fromJson static method
Implementation
static ActivityAssets fromJson(Map<String, dynamic> json) {
return ActivityAssets(
largeImage: json['largeImage'],
largeText: json['largeText'],
smallImage: json['smallImage'],
smallText: json['smallText'],
);
}