isZip5Code method

bool isZip5Code()

Implementation

bool isZip5Code() =>
    isNotNullOrEmpty() ? RegExp(r'^\d{5}').hasMatch(this ?? "") : false;