Skip to content

Instantly share code, notes, and snippets.

@Headmast
Last active October 2, 2020 19:35
Show Gist options
  • Save Headmast/ec296e1a1a9d27a2a4bd3035b6ca9e8a to your computer and use it in GitHub Desktop.
Save Headmast/ec296e1a1a9d27a2a4bd3035b6ca9e8a to your computer and use it in GitHub Desktop.
void main() {
  int a = 9145;
  print('Value $a is even ${a.isEven}.');
}
@artem-zaitsev
Copy link

Все ок. Единственное: если надо получить только значение какой-то переменной/функции внутри строки, то можно опускать {}.

print('Value $a is even ${a.isEven}.');

Но при работе с методами объекта(при обращении через "." скобки придется указать).

@Headmast
Copy link
Author

Headmast commented Oct 2, 2020

Понял, без скобок даже лучше будет.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment