navigate static method

Future navigate(
  1. String serviceId
)

Navigate to a Payoo's service screen. serviceId : is defined by Payoo. See PayooVnServiceIds.

Implementation

static Future<dynamic> navigate(String serviceId) async {
  debugPrint('PayooVnPlugin.navigate: $serviceId');
  return await _channel
      .invokeMethod('navigate', <String, dynamic>{'serviceId': serviceId});
}