copyWith method

CustomFieldContextDefaultValueFloat copyWith({
  1. num? number,
  2. String? type,
})

Implementation

CustomFieldContextDefaultValueFloat copyWith({num? number, String? type}) {
  return CustomFieldContextDefaultValueFloat(
    number: number ?? this.number,
    type: type ?? this.type,
  );
}