Configuration.fromJson constructor Null safety

Configuration.fromJson(
  1. Map<String, dynamic> json
)

Alternate constructor that creates a Configuration from a json.

Params:

  • json: contains the source for instance creation.

Implementation

factory Configuration.fromJson(Map<String, dynamic> json) =>
    ConfigurationImpl.fromJson(json);