Screen constructor

Screen({
  1. required String location,
})

Implementation

Screen({required String location}) : super() {
  type = HitCategory.SCREENVIEW;
  super.location = location;
}