AppSettingsChanged.fromJson constructor

AppSettingsChanged.fromJson(
  1. Map _json
)

Implementation

AppSettingsChanged.fromJson(core.Map _json)
    : this(
        alertDetails: _json.containsKey('alertDetails')
            ? _json['alertDetails'] as core.String
            : null,
        name: _json.containsKey('name') ? _json['name'] as core.String : null,
      );