SpacePropertyExpandable.fromJson constructor

SpacePropertyExpandable.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory SpacePropertyExpandable.fromJson(Map<String, Object?> json) {
  return SpacePropertyExpandable(
    version: json[r'version'] as String?,
    space: json[r'space'] as String?,
  );
}