identify static method

void identify(
  1. Map<String, dynamic> attributes
)

Implementation

static void identify(Map<String, dynamic> attributes) {
  try {
    plotlineChannel.invokeMethod('identify', <String, dynamic>{
      'attributes': attributes,
    });
  } catch (e) {
    debugPrint("Error in identify: $e");
  }
}