Screen constructor Null safety

Screen(
  1. {required String pairingCode,
  2. required bool paired,
  3. required String name,
  4. required String userID,
  5. required DateTime lastUpdated,
  6. required String screenToken,
  7. required double width,
  8. required double height}
)

Implementation

Screen({
  required this.pairingCode,
  required this.paired,
  required this.name,
  required this.userID,
  required this.lastUpdated,
  required this.screenToken,
  required this.width,
  required this.height,
});