isSupported property

bool isSupported

This can control if the run function is called. If your AppService doesn't support all environments, this can be really useful.

Example:


bool get isSupported => Platform.isAndroid;

Implementation

bool get isSupported => true;