Application.fromJsonString constructor

Application.fromJsonString(
  1. 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));