toString method
Formats the LSN value into the XXX/XXX format which is the text format used by PostgreSQL.
Implementation
@override
String toString() {
return '${(value >> 32).toRadixString(16).toUpperCase()}/${value.toUnsigned(32).toRadixString(16).toUpperCase()}';
}