AlbumModelEntity.fromJson constructor

AlbumModelEntity.fromJson(
  1. Map json
)

Implementation

AlbumModelEntity.fromJson(Map<dynamic, dynamic> json) {
  videoDuration = json['videoDuration'];
  resourceSize = json['resourceSize'];
  thumbPath = json['thumbPath'];
  originalPath = json['originalPath'];
  creationDate = json['creationDate'];
  resourceType = json['resourceType'];
  localIdentifier = json['localIdentifier'];
}