isPrivateName static method Null safety
- String name
Return true
if the given name
is visible only within the library in
which it is declared.
Implementation
static bool isPrivateName(String name) => name.isNotEmpty && name[0] == "_";
Return true
if the given name
is visible only within the library in
which it is declared.
static bool isPrivateName(String name) => name.isNotEmpty && name[0] == "_";