Skip to content

Instantly share code, notes, and snippets.

@Pacane
Created October 4, 2023 18:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pacane/6d04ad4b62d09cb3319d6096674869c3 to your computer and use it in GitHub Desktop.
Save Pacane/6d04ad4b62d09cb3319d6096674869c3 to your computer and use it in GitHub Desktop.
named parameters.
abstract class A {
void doSomething({required int a, bool b});
}
void doSomething({required int a, bool b}) => print('Hello');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment