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