Tag.fromJson constructor

Tag.fromJson(
  1. Map<String, dynamic> json
)

Implementation

Tag.fromJson(Map<String, dynamic> json)
    : id = json['id'],
      name = json['name'],
      slug = json['slug'];