PatchInfo constructor
PatchInfo({
- required String patchId,
- required String version,
- required DateTime createdAt,
- required int size,
- required String downloadUrl,
- required String signature,
- String platform = 'android',
- String? changelog,
- bool mandatory = false,
- int rolloutPercentage = 100,
- String? minAppVersion,
- String? maxAppVersion,
Implementation
PatchInfo({
required this.patchId,
required this.version,
required this.createdAt,
required this.size,
required this.downloadUrl,
required this.signature,
this.platform = 'android',
this.changelog,
this.mandatory = false,
this.rolloutPercentage = 100,
this.minAppVersion,
this.maxAppVersion,
});