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