ScreenView constructor

const ScreenView({
  1. required String name,
  2. required String id,
  3. String? type,
  4. String? previousName,
  5. String? previousType,
  6. String? previousId,
  7. String? transitionType,
})

Implementation

const ScreenView(
    {required this.name,
    required this.id,
    this.type,
    this.previousName,
    this.previousType,
    this.previousId,
    this.transitionType});