initPay method
Implementation
@override
Future<bool> initPay(
String appId,
String cpId, {
bool sandBox = false,
}) async {
return await methodChannel.invokeMethod<bool>('initPay', {
'appId': appId,
'cpId': cpId,
'sandBox': sandBox,
}) ??
false;
}