Lens.fromJson constructor
Implementation
Lens.fromJson(Map<String, dynamic> json) {
id = json['id'];
name = json['name'];
facePreference = json['facePreference'];
groupId = json['groupId'];
snapCodes = json['snapcodes'].cast<String>();
previews = json['previews'].cast<String>();
thumbnail = json['thumbnail'].cast<String>();
}