InternalServerException.fromJson constructor

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

Implementation

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