PageApplicationVersionResp constructor

PageApplicationVersionResp({
  1. Int64? total,
  2. Iterable<ApplicationVersion>? versions,
})

Implementation

factory PageApplicationVersionResp({
  $fixnum.Int64? total,
  $core.Iterable<ApplicationVersion>? versions,
}) {
  final result = create();
  if (total != null) result.total = total;
  if (versions != null) result.versions.addAll(versions);
  return result;
}