Sign in
fuchsia
/
reference-docs
/
main
/
.
/
f8
/
sdk
/
dart
/
package-fidl_fidl
/
Encoder
/
encodeFloat32.md
blob: 469388bd6d3bc6ee52f68a1d6313995c5142740b [
file
] [
log
] [
blame
] [
view
]
# encodeFloat32 method
void
encodeFloat32
(
double
value
,
int
offset
)
## Implementation
```dart
void encodeFloat32(double value, int offset) {
data.setFloat32(offset, value, Endian.little);
}
```