validate method
Implementation
Future<FormResultFree> validate(
Map<String, Object?> data, {
List<String> onlyCheckKeys = const [],
}) async {
return form.validate(
data,
onlyCheckKeys: onlyCheckKeys,
);
}
Future<FormResultFree> validate(
Map<String, Object?> data, {
List<String> onlyCheckKeys = const [],
}) async {
return form.validate(
data,
onlyCheckKeys: onlyCheckKeys,
);
}