setEndUserProperties method

  1. @override
dynamic setEndUserProperties(
  1. Map<String, String> endUserProperties
)
override

endUserProperties can be provided as an Map<String, String> object.

Implementation

@override
setEndUserProperties(Map<String, String> endUserProperties) {
  methodChannel.invokeMethod('setEndUserProperties', {
    'endUserProperties': endUserProperties,
  });
}