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