There's no way of explicitly saying "use the default value for this argument", but instead you can avoid specifying any arguments where you don't want the default value. When you want to omit an argument but specify a later one, you have to use named arguments - basically just specifying the name of the parameter that the argument is meant to correspond to. In your case, you want to provide an argument for the b
parameter, so you call it like this:
Func(b: 10);
If you only wanted to supply an argument for the a
parameter, you could either use a named argument for clarity:
Func(a: 10);
or just use a positional argument:
Func(10); // The compiler assumes this corresponds to the first parameter