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