Event_Epoch constructor

Event_Epoch({
  1. Int64? beginSlot,
  2. Int64? height,
})

Implementation

factory Event_Epoch({
  $fixnum.Int64? beginSlot,
  $fixnum.Int64? height,
}) {
  final $result = create();
  if (beginSlot != null) {
    $result.beginSlot = beginSlot;
  }
  if (height != null) {
    $result.height = height;
  }
  return $result;
}