StoragePathGrant.fromJson constructor

StoragePathGrant.fromJson(
  1. Map<String, dynamic> j
)

Implementation

factory StoragePathGrant.fromJson(Map<String, dynamic> j) => StoragePathGrant(path: j['path'], readOnly: j['read_only'] ?? false);