fromJson static method
Implementation
static SecretVersionsPage fromJson(Map<String, dynamic> json) {
return SecretVersionsPage(
versions: ((json['versions'] as List?) ?? const [])
.whereType<Map>()
.map((item) => SecretVersion.fromJson(item.cast<String, dynamic>()))
.toList(),
);
}