copyWith method

CustomFieldContextDefaultValueURL copyWith({
  1. String? contextId,
  2. String? type,
  3. String? url,
})

Implementation

CustomFieldContextDefaultValueURL copyWith(
    {String? contextId, String? type, String? url}) {
  return CustomFieldContextDefaultValueURL(
    contextId: contextId ?? this.contextId,
    type: type ?? this.type,
    url: url ?? this.url,
  );
}