copyWith method
Implementation
ContextualConfiguration copyWith(
{dynamic configuration,
String? fieldContextId,
String? id,
dynamic schema}) {
return ContextualConfiguration(
configuration: configuration ?? this.configuration,
fieldContextId: fieldContextId ?? this.fieldContextId,
id: id ?? this.id,
schema: schema ?? this.schema,
);
}