ObjectExist.fromJson constructor

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

Creates a ObjectExist instance from a JSON representation.

Implementation

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