Attachment.fromJson constructor
Attachment.fromJson(
- Map json_
Implementation
Attachment.fromJson(core.Map json_)
: this(
mimeType: (json_['mimeType'] as core.List?)
?.map((value) => value as core.String)
.toList(),
name: json_['name'] as core.String?,
);