reportShare method
Implementation
@override
Future<String?> reportShare(String shareCode, String sharePlatform) async {
var result = await methodChannel.invokeMethod<String>('reportShare',
{"shareCode": shareCode, "sharePlatform": sharePlatform});
if (kDebugMode) {
print("reportShare===$result");
}
return result;
}