ProjectSettings.fromJson constructor
ProjectSettings.fromJson(
- Map json_
Implementation
ProjectSettings.fromJson(core.Map json_)
: this(
legacyRedirectionState: json_.containsKey('legacyRedirectionState')
? json_['legacyRedirectionState'] as core.String
: null,
name: json_.containsKey('name') ? json_['name'] as core.String : null,
);