Dart endsWithで文字列の後方に指定した文字列が含まれているかを判定する

環境
OS windows10 Home 64bit
Dart 2.18.4

書式
対象文字列.endsWith(指定文字列)
文字列の後方に指定した文字列が含まれているかを判定するには、「 endsWith 」を使用します。
指定文字列が含まれていれば「true」が、そうでなければ「false」が返ります。

使用例

void main() {
  
    String str = 'arkgame';

  print(str.endsWith('e'));
  print(str.endsWith('game')); 
  print(str.endsWith('aem')); 
}

実行結果
true
true
false

Dart

Posted by arkgame