ConfigChange.fromJson constructor

ConfigChange.fromJson(
  1. Map json_
)

Implementation

ConfigChange.fromJson(core.Map json_)
    : this(
        advices: (json_['advices'] as core.List?)
            ?.map((value) =>
                Advice.fromJson(value as core.Map<core.String, core.dynamic>))
            .toList(),
        changeType: json_['changeType'] as core.String?,
        element: json_['element'] as core.String?,
        newValue: json_['newValue'] as core.String?,
        oldValue: json_['oldValue'] as core.String?,
      );