判断这个字符串是否以 other 结尾。
other
例如
const string = 'Dart is open source'; print(string.endsWith('urce')); // true
bool endsWith(String other);