getBytes method
Implementation
RadBytes getBytes(int index) {
if ([index].runtimeType.toString() == 'RadBytes') {
return _value[index] as RadBytes;
} else {
throw RadError(
'RadArray', 'getBytes', 'unable to parse $_value as RadBytes.');
}
}