copyWith method
Implementation
GroupCreate copyWith({GroupCreateType? type, String? name, String? id}) {
return GroupCreate(
type: type ?? this.type,
name: name ?? this.name,
id: id ?? this.id,
);
}
GroupCreate copyWith({GroupCreateType? type, String? name, String? id}) {
return GroupCreate(
type: type ?? this.type,
name: name ?? this.name,
id: id ?? this.id,
);
}