getMissProductOrder static method

Future<List<ProductOrderInfo>> getMissProductOrder()

Queries the missed orders for the current Huawei ID.

Implementation

static Future<List<ProductOrderInfo>> getMissProductOrder() async {
  final dynamic response = await _josAppChannel.invokeMethod(
    'JosAppsClient.getMissProductOrder',
  );
  return List<ProductOrderInfo>.from(
    response.map(
      (dynamic x) => ProductOrderInfo.fromMap(
        Map<dynamic, dynamic>.from(x),
      ),
    ),
  ).toList();
}