SequenceNumberEntry constructor

SequenceNumberEntry({
  1. ByteArray? bytes,
  2. MapValue? mapValue,
})

Implementation

factory SequenceNumberEntry({
  ByteArray? bytes,
  MapValue? mapValue,
}) {
  final $result = create();
  if (bytes != null) {
    $result.bytes = bytes;
  }
  if (mapValue != null) {
    $result.mapValue = mapValue;
  }
  return $result;
}