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