ListIDPsResponse constructor
ListIDPsResponse({
- ListDetails? details,
- IDPFieldName? sortingColumn,
- Iterable<
IDP> ? result,
Implementation
factory ListIDPsResponse({
$8.ListDetails? details,
$10.IDPFieldName? sortingColumn,
$core.Iterable<$10.IDP>? result,
}) {
final $result = create();
if (details != null) {
$result.details = details;
}
if (sortingColumn != null) {
$result.sortingColumn = sortingColumn;
}
if (result != null) {
$result.result.addAll(result);
}
return $result;
}