ContentAreaDto constructor
- {required String id,
- required String vendorCustomerId,
- required ContentAreaStyleDto style,
- String? title,
- String? description,
- String? resourceUri,
- String? generatedResourceUri,
- String? onClickUri,
- String? backgroundColor,
- required ContentAreaPositionDto position}
Implementation
ContentAreaDto({
required this.id,
required this.vendorCustomerId,
required this.style,
this.title,
this.description,
this.resourceUri,
this.generatedResourceUri,
this.onClickUri,
this.backgroundColor,
required this.position,
});