countryCode static method

Validator countryCode({
  1. String? message,
})

Validates a standard E.164 country dial code.

FormRules.countryCode().build()

Implementation

static Validator countryCode({String? message}) =>
    Validator._()..countryCode(message: message);