checkStartWith method

bool checkStartWith(
  1. DataType? field
)

Implementation

bool checkStartWith(DataType? field) {
  return not ^
      values.any(
          (value) => field?.toString().startsWith(value.toString()) ?? false);
}