LifeCycle constructor

LifeCycle({
  1. required String viewName,
  2. required String stage,
  3. String? parentViewName,
  4. int? timeMs,
})

Implementation

LifeCycle({
  required this.viewName,
  required this.stage,
  this.parentViewName,
  this.timeMs,
});