time property

int? time

Returns the timestamp for this block header. Time is in seconds since unix epoch.

Implementation

int? get time => _time;
void time=(int? newTime)

Sets the block header's timestamp.

Implementation

set time(int? newTime) {
    _time = newTime;
}