blob: cd2bccc2e79661e77c7950bf6048820901cc0a36 [file] [log] [blame] [view]
# setValue method
*[<Null safety>](https://dart.dev/null-safety)*
- @override
void setValue
(ByteData value)
_<span class="feature inherited">inherited</span>_
<p>Sets the value of this <code>Property</code>.</p>
## Implementation
```dart
@override
void setValue(T value) {
_writer?.setBufferProperty(index, value);
}
```