GetPolicyOptions.fromJson constructor

GetPolicyOptions.fromJson(
  1. Map _json
)

Implementation

GetPolicyOptions.fromJson(core.Map _json)
    : this(
        requestedPolicyVersion: _json.containsKey('requestedPolicyVersion')
            ? _json['requestedPolicyVersion'] as core.int
            : null,
      );