sync static method

Future sync(
  1. Carrier carrier
)

start atlas sync collection

Implementation

static Future sync(Carrier carrier) async {
  var res = await _channel.invokeMethod('sync', carrier.toJson());
  return res;
}