StaticEndpointConfig.fromJson constructor

StaticEndpointConfig.fromJson(
  1. Map json_
)

Implementation

StaticEndpointConfig.fromJson(core.Map json_)
    : this(
        endpointConfig: json_.containsKey('endpointConfig')
            ? json_['endpointConfig'] as core.Map<core.String, core.dynamic>
            : null,
        lastUpdated: json_.containsKey('lastUpdated')
            ? json_['lastUpdated'] as core.String
            : null,
      );