Sample constructor
const
Sample({
- required int id,
- required String kind,
- required String label,
- required String type,
- required String owner,
- required String scope,
- required int updatedAt,
- required String note,
- String? status,
- String? value,
- int? listeners,
- int? dependencies,
- int? writes,
- int? runs,
- int? lastDurationUs,
- String? operation,
- List<
CollectionDelta> ? deltas, - int? mutations,
Implementation
const Sample({
required this.id,
required this.kind,
required this.label,
required this.type,
required this.owner,
required this.scope,
required this.updatedAt,
required this.note,
this.status,
this.value,
this.listeners,
this.dependencies,
this.writes,
this.runs,
this.lastDurationUs,
this.operation,
this.deltas,
this.mutations,
});