isAnnounceSupported static method

bool isAnnounceSupported()

Checks if announce is supported on the given platform.

On Android the announce method is deprecated, therefore will return false. On other platforms, this will return true.

Implementation

static bool isAnnounceSupported() {
  return defaultTargetPlatform != TargetPlatform.android;
}