EnterpriseConfig.fromJson constructor

EnterpriseConfig.fromJson(
  1. Map json_
)

Implementation

EnterpriseConfig.fromJson(core.Map json_)
    : this(
        clusterTier: json_.containsKey('clusterTier')
            ? json_['clusterTier'] as core.String
            : null,
      );