Input$POSCategoryInput constructor

Input$POSCategoryInput({
  1. required String name,
  2. required String mapPicture,
  3. Input$PictureInput? picture,
})

Implementation

factory Input$POSCategoryInput({
  required String name,
  required String mapPicture,
  Input$PictureInput? picture,
}) =>
    Input$POSCategoryInput._({
      r'name': name,
      r'mapPicture': mapPicture,
      if (picture != null) r'picture': picture,
    });