isMatch static method

bool isMatch(
  1. PlatformException e
)

Implementation

static bool isMatch(PlatformException e) {
  return e.code == 'IllegalStateException' &&
      e.message?.contains('No active isolate with id') == true;
}