StorageExist.fromJson constructor

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

Creates a StorageExist instance from a JSON representation.

Implementation

StorageExist.fromJson(Map<String, dynamic> json) {
  exists = json['exists'];
}