validate method

Future<FormResultFree> validate(
  1. Map<String, Object?> data, {
  2. List<String> onlyCheckKeys = const [],
})

Implementation

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