FileInfo.fromJson constructor

FileInfo.fromJson(
  1. Map json
)

Implementation

FileInfo.fromJson(Map json)
    : name = json['name'],
      createdOn = json['createdOn'],
      publicUrl = json['publicUrl'],
      url = json['url'],
      size = json['size'];