PageApplicationVersionResp constructor
PageApplicationVersionResp({
- Int64? total,
- 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;
}