Event_Epoch constructor
Event_Epoch({
- Int64? beginSlot,
- 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;
}