FunctionCall constructor

const FunctionCall({
  1. String? id,
  2. required String name,
  3. Map<String, dynamic>? args,
})

Creates a FunctionCall.

Implementation

const FunctionCall({this.id, required this.name, this.args});