call method
Implementation
@override
Object? call(Interpreter interpreter, List<Object?> arguments,
Map<Symbol, Object?> namedArguments) {
var path = namedArguments[const Symbol('path')];
if (path == null) {
throw 'Missing argument "path" for "start"';
}
if (arguments.isEmpty) {
throw 'Missing argument "config" for "start"';
}
return recorder.start(arguments[0] as RecordConfig, path: path as String);
}