StoryLink.fromJson constructor

StoryLink.fromJson(
  1. Map json
)

Implementation

StoryLink.fromJson(Map<dynamic, dynamic> json) {
  value = json['value'] ?? '';
  type = json['type'] ?? '';
  tag = json['tag'] ?? '';
}