start method

Future<void> start(
  1. Map? extraMap
)

Implementation

Future<void> start(Map? extraMap) async {
    if(extraMap != null)
    {
      TradplusSdk.channel.invokeMethod('uid2_start', extraMap);
    }
    else
    {
       print("---extraMap is null---");
    }
}