init method

Future<bool> init()

Implementation

Future<bool> init() async {
  bool? state = false;
  state = await _channel.invokeMethod<bool?>('init');
  return state ?? false;
}