EstimatedResourceSize.fromJson constructor

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

Implementation

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