PeripheralsConfig.fromJson constructor

PeripheralsConfig.fromJson(
  1. Map json_
)

Implementation

PeripheralsConfig.fromJson(core.Map json_)
    : this(
        metastoreService: json_.containsKey('metastoreService')
            ? json_['metastoreService'] as core.String
            : null,
        sparkHistoryServerConfig:
            json_.containsKey('sparkHistoryServerConfig')
                ? SparkHistoryServerConfig.fromJson(
                    json_['sparkHistoryServerConfig']
                        as core.Map<core.String, core.dynamic>)
                : null,
      );