RelativeRotary.fromJson constructor
Creates a RelativeRotary object from the JSON response to a GET request.
Implementation
factory RelativeRotary.fromJson(Map<String, dynamic> dataMap) {
// Handle entire response given with no filter.
Map<String, dynamic> data = MiscTools.extractData(dataMap);
return RelativeRotary(
type: ResourceType.fromString(data[ApiFields.type] ?? ""),
id: data[ApiFields.id] ?? "",
idV1: data[ApiFields.idV1] ?? "",
owner: Relative.fromJson(
Map<String, dynamic>.from(data[ApiFields.owner] ?? {})),
lastEvent: RelativeRotaryLastEvent.fromJson(Map<String, dynamic>.from(
data[ApiFields.relativeRotary] ?? {})[ApiFields.lastEvent] ??
{}),
);
}