KeyedAppState.fromJson constructor

KeyedAppState.fromJson(
  1. Map json_
)

Implementation

KeyedAppState.fromJson(core.Map json_)
    : this(
        data: json_['data'] as core.String?,
        key: json_['key'] as core.String?,
        message: json_['message'] as core.String?,
        severity: json_['severity'] as core.String?,
        stateTimestampMillis: json_['stateTimestampMillis'] as core.String?,
      );