PeripheralsConfig.fromJson constructor

PeripheralsConfig.fromJson(
  1. Map json_
)

Implementation

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