getSelectListWithLinkage<T, S> static method
List<S> ?
getSelectListWithLinkage<T, S>(
- List<
ISelectBox< ? dataList, {T> > - List<
S> ? collection, - S convert(
- ISelectBox<
T> event
- ISelectBox<
Implementation
static List<S>? getSelectListWithLinkage<T, S>(List<ISelectBox<T>>? dataList,
{List<S>? collection, S convert(ISelectBox<T> event)?}) {
collection ??= List.empty(growable: true);
if (dataList == null || dataList.isEmpty) {
return collection;
}
_getSelectListWithLinkage(dataList, collection: collection, convert: convert);
return collection;
}