AnybillStoreDto constructor
AnybillStoreDto(- {required String id,
- String? iconResource,
- String? displayName,
- String? googlePlacesId,
- required AddressDto address,
- required LocationDto location,
- required bool comingSoon,
- required DateTime lastModifiedAt,
- List<AnybillStoreBillCreationInformationDto>? billCreationInformation,
- List<String>? categoryIds,
- 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,
});