copyWith method

BackgroundRow copyWith({
  1. String? userId,
  2. Uint8List? data,
})

Implementation

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