TestAttachment.fromJson constructor

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

Implementation

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