hasCapitalletter method

bool hasCapitalletter()

Kiểm tra string tất cả là chữ hoa

Implementation

bool hasCapitalletter() => hasMatch(this, r'[A-Z]');