CloudHsmServiceException.fromJson constructor

CloudHsmServiceException.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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