copyWith method

CustomFieldContextDefaultValueForgeGroupField copyWith({
  1. String? contextId,
  2. String? groupId,
  3. String? type,
})

Implementation

CustomFieldContextDefaultValueForgeGroupField copyWith(
    {String? contextId, String? groupId, String? type}) {
  return CustomFieldContextDefaultValueForgeGroupField(
    contextId: contextId ?? this.contextId,
    groupId: groupId ?? this.groupId,
    type: type ?? this.type,
  );
}