EstimatedResourceSize.fromJson constructor
Implementation
factory EstimatedResourceSize.fromJson(Map<String, dynamic> json) {
return EstimatedResourceSize(
estimatedOn: timeStampFromJson(json['estimatedOn']),
estimatedSizeInBytes: json['estimatedSizeInBytes'] as double?,
);
}