Input$FeaturedCorporateInput constructor
Input$FeaturedCorporateInput({})
Implementation
factory Input$FeaturedCorporateInput({
required int rank,
String? pos,
String? wholesaler,
String? manufacturer,
}) =>
Input$FeaturedCorporateInput._({
r'rank': rank,
if (pos != null) r'pos': pos,
if (wholesaler != null) r'wholesaler': wholesaler,
if (manufacturer != null) r'manufacturer': manufacturer,
});