getPackagingInstruction method

Future<PackingInstruction?> getPackagingInstruction({
  1. required DioClient microsoftClient,
  2. required String piNumber,
  3. Options? getPackingInstructionOptions,
})

Implementation

Future<PackingInstruction?> getPackagingInstruction({
  required DioClient microsoftClient,
  required String piNumber,
  Options? getPackingInstructionOptions,
}) async {
  final response = await _orderApiProvider.getPackagingInstruction(
    microsoftClient: microsoftClient,
    piNumber: piNumber,
    getPackingInstructionOptions: getPackingInstructionOptions,
  );

  return PackingInstruction.fromJson(response.data);
}