RemovePolicyApplicationsResponse.fromJson constructor

RemovePolicyApplicationsResponse.fromJson(
  1. Map json_
)

Implementation

RemovePolicyApplicationsResponse.fromJson(core.Map json_)
  : this(
      policy: json_.containsKey('policy')
          ? Policy.fromJson(
              json_['policy'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );