copyWith method
Implementation
AccountRow copyWith({int? id, String? userId}) => AccountRow(
id: id ?? this.id,
userId: userId ?? this.userId,
);
AccountRow copyWith({int? id, String? userId}) => AccountRow(
id: id ?? this.id,
userId: userId ?? this.userId,
);