copyWith method
Implementation
ContentCreateContainer copyWith({dynamic id, String? type}) {
return ContentCreateContainer(
id: id ?? this.id,
type: type ?? this.type,
);
}
ContentCreateContainer copyWith({dynamic id, String? type}) {
return ContentCreateContainer(
id: id ?? this.id,
type: type ?? this.type,
);
}