call method

  1. @override
Object? call(
  1. Interpreter interpreter,
  2. List<Object?> arguments,
  3. Map<Symbol, Object?> namedArguments
)
override

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