Attachment.fromJson constructor

Attachment.fromJson(
  1. Map _json
)

Implementation

Attachment.fromJson(core.Map _json)
    : this(
        csv: _json.containsKey('csv')
            ? Csv.fromJson(
                _json['csv'] as core.Map<core.String, core.dynamic>)
            : null,
      );