squarealfa_validation 1.0.0
squarealfa_validation: ^1.0.0 copied to clipboard
Contains annotations to drive validation and classes to represent validation results
example/example.dart
import 'package:squarealfa_validation/squarealfa_validation.dart';
part 'example.g.dart';
@validatable
class Recipe {
@required
final String title;
Recipe({
required this.title,
});
}