SpaceExpandable.fromJson constructor

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

Implementation

factory SpaceExpandable.fromJson(Map<String, Object?> json) {
  return SpaceExpandable(
    settings: json[r'settings'] as String?,
    metadata: json[r'metadata'] as String?,
    operations: json[r'operations'] as String?,
    lookAndFeel: json[r'lookAndFeel'] as String?,
    permissions: json[r'permissions'] as String?,
    icon: json[r'icon'] as String?,
    description: json[r'description'] as String?,
    theme: json[r'theme'] as String?,
    history: json[r'history'] as String?,
    homepage: json[r'homepage'] as String?,
    identifiers: json[r'identifiers'] as String?,
  );
}