RemoveIamPolicyResponse.fromJson constructor

RemoveIamPolicyResponse.fromJson(
  1. Map _json
)

Implementation

RemoveIamPolicyResponse.fromJson(core.Map _json)
    : this(
        success: _json.containsKey('success')
            ? _json['success'] as core.bool
            : null,
      );