endsWith static method

bool endsWith(
  1. String? string,
  2. String? other
)

Refer to Safe.endsWith

Implementation

static bool endsWith(String? string, String? other) =>
    Safe.endsWith(string, other);