DeleteFileSystemLustreResponse.fromJson constructor

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

Implementation

factory DeleteFileSystemLustreResponse.fromJson(Map<String, dynamic> json) {
  return DeleteFileSystemLustreResponse(
    finalBackupId: json['FinalBackupId'] as String?,
    finalBackupTags: (json['FinalBackupTags'] as List?)
        ?.whereNotNull()
        .map((e) => Tag.fromJson(e as Map<String, dynamic>))
        .toList(),
  );
}