Boot constructor

Boot({
  1. required bool booting,
  2. List<BootError> errors = const [],
})

Returns a new Boot instance.

Implementation

Boot({
  required this.booting,
  this.errors = const [],
});