Translations.fromJson constructor

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

Implementation

Translations.fromJson(Map<String, dynamic> json) {
  id = json['id'];
  resourceId = json['resource_id'];
  text = json['text'];
}