SpacePropertyCreate.fromJson constructor
Implementation
factory SpacePropertyCreate.fromJson(Map<String, Object?> json) {
return SpacePropertyCreate(
key: json[r'key'] as String? ?? '',
value: PropertyValue.fromJson(
json[r'value'] as Map<String, Object?>? ?? const {}),
space: json[r'space'] != null
? SpacePropertyCreateSpace.fromJson(
json[r'space']! as Map<String, Object?>)
: null,
);
}