GridCommandRequest.board constructor

const GridCommandRequest.board({
  1. @Default.new(<String>{}) Set<String> stores,
  2. @Default.new(<String>{}) Set<String> statuses,
  3. @Default.new(false) bool blockedOnly,
  4. bool? approved,
})

Projects every resident work store's open beads into board rows.

Implementation

const factory GridCommandRequest.board({
  @Default(<String>{}) Set<String> stores,
  @Default(<String>{}) Set<String> statuses,
  @Default(false) bool blockedOnly,
  bool? approved,
}) = GridBeadBoard;