copyWith method
ShareOptionResponseModel
copyWith({
- String? name,
- String? id,
- ShareOptionResponseModelType? type,
Implementation
ShareOptionResponseModel copyWith(
{String? name, String? id, enums.ShareOptionResponseModelType? type}) {
return ShareOptionResponseModel(
name: name ?? this.name, id: id ?? this.id, type: type ?? this.type);
}