copyWith method

FwStandardModelsDataField copyWith({
  1. String? name,
  2. String? value,
  3. String? type,
})

Implementation

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