get method
Implementation
X? get(int index) {
if (this == null) return null;
if (index > this!.length) return null;
return this![index];
}
X? get(int index) {
if (this == null) return null;
if (index > this!.length) return null;
return this![index];
}