isPositive static method
Validates that size is positive (> 0).
Implementation
static bool isPositive(ByteConverter size) {
return size.bytes > 0;
}
Validates that size is positive (> 0).
static bool isPositive(ByteConverter size) {
return size.bytes > 0;
}