sublist method
Refer to List.sublist.
Implementation
Future<List<E>> sublist(int start, [int? end]) async {
return (await this).sublist(start, end);
}
Refer to List.sublist.
Future<List<E>> sublist(int start, [int? end]) async {
return (await this).sublist(start, end);
}