ListAlertFeedbackResponse.fromJson constructor

ListAlertFeedbackResponse.fromJson(
  1. Map _json
)

Implementation

ListAlertFeedbackResponse.fromJson(core.Map _json)
    : this(
        feedback: _json.containsKey('feedback')
            ? (_json['feedback'] as core.List)
                .map<AlertFeedback>((value) => AlertFeedback.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );