copyWith method
Implementation
CustomFieldContextDefaultValueForgeObjectField copyWith(
{Map<String, dynamic>? object, String? type}) {
return CustomFieldContextDefaultValueForgeObjectField(
object: object ?? this.object,
type: type ?? this.type,
);
}