implement static method

MLNLocationManager implement({
  1. bool $keepIsolateAlive = true,
})

Builds an object that implements the MLNLocationManager protocol. To implement multiple protocols, use addToBuilder or objc.ObjCProtocolBuilder directly.

If $keepIsolateAlive is true, this protocol will keep this isolate alive until it is garbage collected by both Dart and ObjC.

Implementation

static MLNLocationManager implement({bool $keepIsolateAlive = true}) {
  final builder = objc.ObjCProtocolBuilder(debugName: 'MLNLocationManager');

  builder.addProtocol($protocol);
  return MLNLocationManager.castFrom(builder.build(keepIsolateAlive: $keepIsolateAlive));
}