SnapdChange constructor

const SnapdChange({
  1. String id = '',
  2. String kind = '',
  3. String summary = '',
  4. String status = '',
  5. bool ready = false,
  6. required DateTime spawnTime,
  7. DateTime? readyTime,
  8. String? err,
  9. List<SnapdTask> tasks = const [],
  10. List<String> snapNames = const [],
})

Implementation

const SnapdChange(
    {this.id = '',
    this.kind = '',
    this.summary = '',
    this.status = '',
    this.ready = false,
    required this.spawnTime,
    this.readyTime,
    this.err,
    this.tasks = const [],
    this.snapNames = const []});