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