copyWith method
Implementation
FwStandardModelsDataField copyWith({
String? name,
String? value,
String? type,
}) {
return FwStandardModelsDataField(
name: name ?? this.name,
value: value ?? this.value,
type: type ?? this.type,
);
}