apply method

Hlc apply({
  1. DateTime? dateTime,
  2. int? counter,
  3. String? nodeId,
})

Create a copy of this object applying the optional properties.

Implementation

Hlc apply({DateTime? dateTime, int? counter, String? nodeId}) => Hlc(
    dateTime ?? this.dateTime,
    counter ?? this.counter,
    nodeId ?? this.nodeId);