MountInfo.fromJson constructor

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

Implementation

factory MountInfo.fromJson(Map<String, dynamic> json) {
  return MountInfo(
    path: json['path'],
    freeSpace: json['freeSpace'],
    totalSpace: json['totalSpace'],
    internalPath: json['internalPath'],
    onlineCachePath: json['onlineCachePath'],
  );
}