check function

bool check(
  1. dynamic t
)

Implementation

bool check(dynamic t) {
  return t is String && 'SEA{' == t.substring(0, 4);
}