GoogleChromeManagementV1UserRequestingExtensionDetails.fromJson constructor

GoogleChromeManagementV1UserRequestingExtensionDetails.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1UserRequestingExtensionDetails.fromJson(
    core.Map json_)
    : this(
        email:
            json_.containsKey('email') ? json_['email'] as core.String : null,
        justification: json_.containsKey('justification')
            ? json_['justification'] as core.String
            : null,
      );