Tagged.fromJson constructor

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

Implementation

factory Tagged.fromJson(Map<String, dynamic> json) {
  return Tagged(json['id'], DateTime.parse(json['sent']), json['recipientId'],
      json['number'], json['who']);
}