InternalServiceErrorException.fromJson constructor

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

Implementation

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