endsWith 抽象方法

bool endsWith(
  1. String other
)

判断这个字符串是否以 other 结尾。

例如

const string = 'Dart is open source';
print(string.endsWith('urce')); // true

实现

bool endsWith(String other);