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,
      );