SmartPosterRecord constructor

SmartPosterRecord({
  1. dynamic title,
  2. dynamic uri,
  3. Action? action,
  4. Map<String, Uint8List>? icon,
  5. int? size,
  6. String? typeInfo,
})

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;
  }
}