BatchCreateOccurrencesRequest.fromJson constructor
BatchCreateOccurrencesRequest.fromJson(
- Map _json
Implementation
BatchCreateOccurrencesRequest.fromJson(core.Map _json)
: this(
occurrences: _json.containsKey('occurrences')
? (_json['occurrences'] as core.List)
.map((value) => Occurrence.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);