asDouble method

double asDouble ()

For using this method, We're assuming it is safe to transform to utf8 Strings. Returns the bytes as a double using double.parse()

Implementation

double asDouble(){
  assert(_isStream != null && !_isStream);
  return double.parse(asString());
}