M_forward method

Uint8List M_forward()
override

Implementation

Uint8List M_forward() {
    List<int> bytes = [];
    if (this.value == null) {
        bytes.add(0);
    } else if (this.value != null) {
        bytes.add(1);
        bytes.addAll(this.value!.M_forward());
    }
    return Uint8List.fromList(bytes);
}