getOrNull<T> method
Implementation
T? getOrNull<T>(int index) {
try {
return this[index] as T?;
} catch (e) {
return null;
}
}
T? getOrNull<T>(int index) {
try {
return this[index] as T?;
} catch (e) {
return null;
}
}