Alert.fromJson constructor

Alert.fromJson(
  1. Map json_
)

Implementation

Alert.fromJson(core.Map json_)
  : this(
      message: json_['message'] as core.String?,
      name: json_['name'] as core.String?,
      severity: json_['severity'] as core.String?,
      type: json_['type'] as core.String?,
    );