HashtagModel.fromJson constructor

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

Implementation

factory HashtagModel.fromJson(Map<String, dynamic> json) {
  return new HashtagModel(
    id: json['id'],
    tagName: json['tagName'],
  );
}