ExternalAction.fromJson constructor

ExternalAction.fromJson(
  1. Map json_
)

Implementation

ExternalAction.fromJson(core.Map json_)
  : this(
      type: json_['type'] as core.String?,
      uri: json_['uri'] as core.String?,
    );