Export.fromJson constructor

Export.fromJson(
  1. dynamic json
)

Implementation

Export.fromJson(dynamic json) {
  urls = json["urls"] != null ? json["urls"].cast<String>() : [];
}