blob: 25f281d60e4eabbeeef9c1589cc7d57c35f90211 [file] [log] [blame] [view]
# getSize method
[GetSizeResult](../../zircon/GetSizeResult-class.md) getSize
()
## Implementation
```dart
GetSizeResult getSize() {
if (handle == null) {
return const GetSizeResult(ZX.ERR_INVALID_ARGS);
}
return System.vmoGetSize(handle!);
}
```