copyWith method
Implementation
NotifyBleStateEntity copyWith({
bool? success,
String? message,
String? data,
String? dataType,
}) {
return NotifyBleStateEntity()
..success = success ?? this.success
..message = message ?? this.message
..data = data ?? this.data
..dataType = dataType ?? this.dataType;
}