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