toJson method
Converts this ModelNodeOverride to its JSON representation, keyed by name.
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (orientation != null) {
json["orientation"] = orientation;
}
return json;
}