CreateServiceAccountRequest.fromJson constructor
CreateServiceAccountRequest.fromJson(
- Map json_
Implementation
CreateServiceAccountRequest.fromJson(core.Map json_)
: this(
accountId: json_['accountId'] as core.String?,
serviceAccount: json_.containsKey('serviceAccount')
? ServiceAccount.fromJson(json_['serviceAccount']
as core.Map<core.String, core.dynamic>)
: null,
);