TriggerActionResponse.fromJson constructor

TriggerActionResponse.fromJson(
  1. Map json_
)

Implementation

TriggerActionResponse.fromJson(core.Map json_)
  : this(
      disabled: json_['disabled'] as core.bool?,
      text: json_['text'] as core.String?,
    );