sendProductInfo method

Future sendProductInfo(
  1. dynamic params
)

Implementation

Future<dynamic> sendProductInfo(params) async {
  try {
    final result = sobotMethodChannel.invokeMethod(sendProductInfoMethod,params);
    return result;
  } on PlatformException catch (e) {
    print(e);
    //抛出异常
    return {};
  }
}