RunFunctionCall.fromJson constructor
Creates a RunFunctionCall from JSON.
Implementation
factory RunFunctionCall.fromJson(Map<String, dynamic> json) {
return RunFunctionCall(
name: json['name'] as String,
arguments: json['arguments'] as String,
);
}