menu
sunny_forms package
documentation
builders/future.dart
ListTryGetXX<T>
tryGet method
tryGet method
dark_mode
light_mode
tryGet
method
T?
tryGet
(
int
index
)
Implementation
T? tryGet(int index) { if (index >= length) { return null; } else { return this[index]; } }
sunny_forms package
documentation
builders/future
ListTryGetXX<T>
tryGet method
ListTryGetXX extension on
List
<
T
>