VersioningConfiguration.fromJson constructor
Implementation
factory VersioningConfiguration.fromJson(Map<String, dynamic> json) {
return VersioningConfiguration(
maxVersions: json['maxVersions'] as int?,
unlimited: json['unlimited'] as bool?,
);
}