updateItemType abstract method

  1. @PATCH.new("rest/s1/growerp/100/ItemType")
Future<ItemType> updateItemType({
  1. @Field.new() required ItemType itemType,
  2. @Field.new() bool? update,
  3. @Field.new() bool? delete,
})

Implementation

@PATCH("rest/s1/growerp/100/ItemType")
Future<ItemType> updateItemType({
  @Field() required ItemType itemType,
  @Field() bool? update,
  @Field() bool? delete,
});