copyWith method

SetUserNote copyWith({
  1. int? userId,
  2. FormattedText? note,
})

Implementation

SetUserNote copyWith({int? userId, FormattedText? note}) =>
    SetUserNote(userId: userId ?? this.userId, note: note ?? this.note);