EventAttachment.fromJson constructor

EventAttachment.fromJson(
  1. Map json_
)

Implementation

EventAttachment.fromJson(core.Map json_)
  : this(
      fileId: json_['fileId'] as core.String?,
      fileUrl: json_['fileUrl'] as core.String?,
      iconLink: json_['iconLink'] as core.String?,
      mimeType: json_['mimeType'] as core.String?,
      title: json_['title'] as core.String?,
    );