copyWith method

CustomFieldContextDefaultValueForgeNumberField copyWith({
  1. String? contextId,
  2. num? number,
  3. String? type,
})

Implementation

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