Project constructor
Project({
- required String id,
- required String name,
- String? slug,
- String customerName = '',
- String? image,
- String imageThumb = '',
- String imagePreview = '',
- String? website,
- String? description,
- bool? gallery,
- bool? translationsDe,
- bool? translationsEn,
- bool? translationsFr,
- bool? translationsIt,
- bool? backlinkUrls,
- List<
ActiveOrder> orders = const [], - Map<
String, Object> ? arbuttonConfig = const {}, - required DateTime created,
- required DateTime modified,
Returns a new Project instance.
Implementation
Project({
required this.id,
required this.name,
this.slug,
this.customerName = '',
this.image,
this.imageThumb = '',
this.imagePreview = '',
this.website,
this.description,
this.gallery,
this.translationsDe,
this.translationsEn,
this.translationsFr,
this.translationsIt,
this.backlinkUrls,
this.orders = const [],
this.arbuttonConfig = const {},
required this.created,
required this.modified,
});