Attachment.fromJson constructor

Attachment.fromJson(
  1. 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?,
      );