reportShare method

Future<Map<Object?, Object?>> reportShare(
  1. String shareCode,
  2. String platform
)

Implementation

Future<Map<Object?, Object?>> reportShare(String shareCode, String platform) async {
  var args = new Map();
  args["shareCode"] = shareCode;
  args["platform"] = platform;
  Map<Object?, Object?> data = await _channel.invokeMethod('reportShare', args);
  return data;
}