StateStore constructor

StateStore({
  1. int version = 1,
  2. Map<String, AckRecord>? checks,
  3. Map<String, Object?>? extras,
})

Implementation

StateStore({
  this.version = 1,
  Map<String, AckRecord>? checks,
  Map<String, Object?>? extras,
}) : checks = checks ?? {},
     extras = extras ?? {};