ContextualConfiguration.fromJson constructor
Implementation
factory ContextualConfiguration.fromJson(Map<String, Object?> json) {
return ContextualConfiguration(
configuration: json[r'configuration'],
fieldContextId: json[r'fieldContextId'] as String? ?? '',
id: json[r'id'] as String? ?? '',
schema: json[r'schema'],
);
}