#[no_mangle]
pub unsafe extern "C" fn Callback__call_two_arg(
    cb: NonNull<Callback>,
    first: DartValue,
    second: DartValue
)
Expand description

Calls the provided Callback with the provided two DartValues as arguments.

Safety

Provided callback should be a valid Callback pointer.