CloudHsmServiceException.fromJson constructor
Implementation
factory CloudHsmServiceException.fromJson(Map<String, dynamic> json) {
return CloudHsmServiceException(
message: json['message'] as String?,
retryable: json['retryable'] as bool?,
);
}