readFloat64 method
Fetch a float64 from the bytes list
Implementation
double readFloat64() {
final data = readUtf8String();
final number = double.parse(data);
return number;
}
Fetch a float64 from the bytes list
double readFloat64() {
final data = readUtf8String();
final number = double.parse(data);
return number;
}