Input$PurchaseSupplierInput constructor

Input$PurchaseSupplierInput({
  1. String? supplier,
  2. List<Input$KeyValueInput>? details,
})

Implementation

factory Input$PurchaseSupplierInput({
  String? supplier,
  List<Input$KeyValueInput>? details,
}) =>
    Input$PurchaseSupplierInput._({
      if (supplier != null) r'supplier': supplier,
      if (details != null) r'details': details,
    });