start method

Future<bool> start()

Starts the Catapush native SDK.

Implementation

Future<bool> start() {
  return _channel
      .invokeMethod<Map<Object?, Object?>>('Catapush#start')
      .then((response) {
    return response!['result']! as bool;
  });
}