QuickActionItem constructor

QuickActionItem(
  1. {required String name,
  2. String description = '',
  3. String version = '',
  4. String author = '',
  5. String license = '',
  6. String git = '',
  7. dynamic distro = '',
  8. required String content}
)

Implementation

QuickActionItem(
    {required this.name,
    this.description = '',
    this.version = '',
    this.author = '',
    this.license = '',
    this.git = '',
    this.distro = '',
    required this.content});