blob: 794b27e8b32c8ed14a80682e55a8da10c9684a42 [file] [log] [blame] [view]
# FakeVmoHolder constructor
*[<Null safety>](https://dart.dev/null-safety)*
FakeVmoHolder(int size)
<p>Creates a new <a href="../../package-fuchsia_inspect_testing/FakeVmoHolder-class.md">FakeVmoHolder</a> of the given size.</p>
## Implementation
```dart
FakeVmoHolder(this.size) : bytes = Uint8List(size).buffer.asByteData();
```