Application.fromJsonString constructor
Application.fromJsonString(
- String json
Load an application from a JSON string.
The string is jsonDecoded before handed to the Application.fromJson constructor.
Implementation
Application.fromJsonString(String json) : this.fromJson(jsonDecode(json));