vania-dart / framework

Fast, simple, and powerful backend framework for Dart built with ❤️
https://vdart.dev
MIT License
155 stars 12 forks source link

[Feature Request] - Convert Strings to enum #72

Open alirezat66 opened 1 month ago

alirezat66 commented 1 month ago

Is your feature request related to a problem? Please describe. When I want to use vania, in some parts like validation I have to use Strings like: 'required|max_length:20|min_length:2' or 'required|email' or 'file:jpg,jpeg,png'

and I have to go to document to check them. Describe the solution you'd like It is better to create enums and also use builder design pattern to make it more readable.