ServiceUnavailableException.fromJson constructor

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

Implementation

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