planWithIdentifier static method

Future<PLYPlan?> planWithIdentifier(
  1. String vendorId
)

Implementation

static Future<PLYPlan?> planWithIdentifier(String vendorId) async {
  final Map<dynamic, dynamic> result = await _channel.invokeMethod(
      'planWithIdentifier', <String, dynamic>{'vendorId': vendorId});
  return transformToPLYPlan(result);
}