SmartPosterRecord constructor
SmartPosterRecord({})
Implementation
SmartPosterRecord({
var title,
var uri,
Action? action,
Map<String, Uint8List>? icon,
int? size,
String? typeInfo,
}) {
_init();
if (title != null) {
this.title = title;
}
if (uri != null) {
this.uri = uri;
}
if (action != null) {
this.action = action;
}
if (icon != null) {
this.icon = icon;
}
if (size != null) {
this.size = size;
}
if (typeInfo != null) {
this.typeInfo = typeInfo;
}
}