OpDispatch constructor

OpDispatch({
  1. required int sequence,
  2. required String type,
  3. required dynamic data,
})

Implementation

OpDispatch({
  required this.sequence,
  required this.type,
  required this.data,
});