Account copyWith({String? id, String? name, String? type}) => Account( id: id ?? this.id, name: name ?? this.name, type: type ?? this.type, );