Input$FormOwnerInput constructor

Input$FormOwnerInput({
  1. String? pos,
  2. String? wholesaler,
  3. String? manufacturer,
})

Implementation

factory Input$FormOwnerInput({
  String? pos,
  String? wholesaler,
  String? manufacturer,
}) =>
    Input$FormOwnerInput._({
      if (pos != null) r'pos': pos,
      if (wholesaler != null) r'wholesaler': wholesaler,
      if (manufacturer != null) r'manufacturer': manufacturer,
    });