DocumentDefaultVersionDescription.fromJson constructor

DocumentDefaultVersionDescription.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DocumentDefaultVersionDescription.fromJson(
    Map<String, dynamic> json) {
  return DocumentDefaultVersionDescription(
    defaultVersion: json['DefaultVersion'] as String?,
    defaultVersionName: json['DefaultVersionName'] as String?,
    name: json['Name'] as String?,
  );
}