ServerRemoteConfigParameterValue.fromJson constructor

ServerRemoteConfigParameterValue.fromJson(
  1. Map json_
)

Implementation

ServerRemoteConfigParameterValue.fromJson(core.Map json_)
    : this(
        useInAppDefault: json_.containsKey('useInAppDefault')
            ? json_['useInAppDefault'] as core.bool
            : null,
        value:
            json_.containsKey('value') ? json_['value'] as core.String : null,
      );