copyWith method
Implementation
BackgroundRow copyWith({String? userId, Uint8List? data}) => BackgroundRow(
userId: userId ?? this.userId,
data: data ?? this.data,
);
BackgroundRow copyWith({String? userId, Uint8List? data}) => BackgroundRow(
userId: userId ?? this.userId,
data: data ?? this.data,
);