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