SearchAppletResp constructor

SearchAppletResp({
  1. int? total,
  2. 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;
}