Skip to content

Instantly share code, notes, and snippets.

@ColinOrr
Created October 3, 2023 06:56
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 ColinOrr/d4dfb56230996ced9a2bde1be8f824f7 to your computer and use it in GitHub Desktop.
Save ColinOrr/d4dfb56230996ced9a2bde1be8f824f7 to your computer and use it in GitHub Desktop.
dart-string-interpolation

dart-string-interpolation

Created with <3 with dartpad.dev.

class Person {
String name;
Person({required this.name});
}
void main() {
final person = Person(name: 'Colin');
print('Hello ${person.name}');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment