RunFunctionCall.fromJson constructor

RunFunctionCall.fromJson(
  1. Map<String, dynamic> json
)

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