FunctionCall.fromJson constructor
Creates a FunctionCall instance from a JSON map.
Implementation
factory FunctionCall.fromJson(Map<String, dynamic> json) => FunctionCall(
name: json['name'] as String,
args: Map<String, dynamic>.from(json['args'] ?? {}),
);