copyWith method

CustomFieldContextDefaultValueForgeObjectField copyWith({
  1. Map<String, dynamic>? object,
  2. String? type,
})

Implementation

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