handleIdentify method

void handleIdentify(
  1. MethodCall call
)

Implementation

void handleIdentify(MethodCall call) {
  Map<Object?, Object?> args = call.arguments as Map<Object?, Object?>;
  String distinctId = args['distinctId'] as String;
  identify(distinctId);
}