blob: 63de0d9b98799e45a3ed76fd22b56f8aa8c075bd [file] [log] [blame] [view]
# decodeFloat32 method
double decodeFloat32
(int offset)
## Implementation
```dart
double decodeFloat32(int offset) => data.getFloat32(offset, Endian.little);
```