Screen constructor

Screen({
  1. Key? key,
  2. Symbol? id,
})

Implementation

Screen({Key? key, Symbol? id}) : super(key: key) {
  this.id = id ?? ID.unique;
  route = ScreenRoute(this);
}