decodeInt method

  1. @override
int decodeInt()
override

Decodes the data as an integer value.

Implementation

@override
int decodeInt() {
  return int.parse(_parent._readString());
}