isActive static method

Future<bool> isActive()

Returns true if Alan Button is Active (activated by activate method or pressed by user) False otherwise

Implementation

static Future<bool> isActive() async {
  return await _channel.invokeMethod('isActive');
}