copyWithWrapped method

FarmListResponse$Response copyWithWrapped({
  1. Wrapped<List<FarmInfoSchema>>? farmList,
})

Implementation

FarmListResponse$Response copyWithWrapped(
    {Wrapped<List<FarmInfoSchema>>? farmList}) {
  return FarmListResponse$Response(
      farmList: (farmList != null ? farmList.value : this.farmList));
}