AnybillStoreDto constructor

AnybillStoreDto(
  1. {required String id,
  2. String? iconResource,
  3. String? displayName,
  4. String? googlePlacesId,
  5. required AddressDto address,
  6. required LocationDto location,
  7. required bool comingSoon,
  8. required DateTime lastModifiedAt,
  9. List<AnybillStoreBillCreationInformationDto>? billCreationInformation,
  10. List<String>? categoryIds,
  11. required bool isDeleted}
)

Implementation

AnybillStoreDto({
  required this.id,
  this.iconResource,
  this.displayName,
  this.googlePlacesId,
  required this.address,
  required this.location,
  required this.comingSoon,
  required this.lastModifiedAt,
  this.billCreationInformation,
  this.categoryIds,
  required this.isDeleted,
});