copyWith method

AccountRow copyWith({
  1. int? id,
  2. String? userId,
})

Implementation

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