getSuperProperties method Null safety

Future<Map?> getSuperProperties()

Returns a Map of the user's current super properties

SuperProperties are a collection of properties that will be sent with every event to Mixpanel, and persist beyond the lifetime of your application.

return Super properties for this Mixpanel instance.

Implementation

Future<Map?> getSuperProperties() async {
  return await _channel.invokeMethod<Map>('getSuperProperties');
}