DataStoreConnectorConfig.fromJson constructor

DataStoreConnectorConfig.fromJson(
  1. Map json_
)

Implementation

DataStoreConnectorConfig.fromJson(core.Map json_)
  : this(
      collection: json_['collection'] as core.String?,
      collectionDisplayName: json_['collectionDisplayName'] as core.String?,
      dataSource: json_['dataSource'] as core.String?,
    );