FunctionCall.fromJson constructor

FunctionCall.fromJson(
  1. Map _json
)

Implementation

FunctionCall.fromJson(core.Map _json)
    : this(
        args: _json.containsKey('args') ? _json['args'] as core.List : null,
        function: _json.containsKey('function')
            ? _json['function'] as core.String
            : null,
      );