copyWith method

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

Implementation

FarmListResponse$Response copyWith({List<FarmInfoSchema>? farmList}) {
  return FarmListResponse$Response(farmList: farmList ?? this.farmList);
}