SearchAppletResp constructor
SearchAppletResp({
- int? total,
- Iterable<
AppletInfo> ? applets,
Implementation
factory SearchAppletResp({
$core.int? total,
$core.Iterable<$2.AppletInfo>? applets,
}) {
final result = create();
if (total != null) result.total = total;
if (applets != null) result.applets.addAll(applets);
return result;
}