LeapFunctionCall.fromMap constructor
Creates a LeapFunctionCall from a JSON map.
Implementation
factory LeapFunctionCall.fromMap(Map<String, dynamic> map) {
return LeapFunctionCall(
id: map['id'] as String,
name: map['name'] as String,
arguments: Map<String, dynamic>.from(map['arguments'] as Map),
);
}