Attachments.fromJson constructor

Attachments.fromJson(
  1. dynamic json
)

Implementation

Attachments.fromJson(dynamic json) {
  _id = json['id'];
  _fileType = json['file_type'];
  _fileName = json['file_name'];
  _createdAt = json['created_at'];
}