endsWith method Null safety
- String other
Whether this string ends with other
.
For example:
'Dart'.endsWith('t'); // true
Implementation
bool endsWith(String other);
Whether this string ends with other
.
For example:
'Dart'.endsWith('t'); // true
bool endsWith(String other);