saveState method

SeatsBuilder saveState({
  1. String? key,
  2. bool gap = true,
  3. bool area = true,
  4. bool tags = true,
  5. bool data = true,
})

Implementation

SeatsBuilder saveState({
  String? key,
  bool gap = true,
  bool area = true,
  bool tags = true,
  bool data = true,
}) {
  _recordStateSnapshot(key: key, gap: gap, area: area, tags: tags, data: data);
  return this;
}