requiredVendorIds property

Future<List<String>> requiredVendorIds

Get the IDs of the required vendors

Implementation

static Future<List<String>> get requiredVendorIds async {
  final List<dynamic> result = await _channel.invokeMethod('getRequiredVendorIds');
  return result.cast();
}