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