An open API service indexing awesome lists of open source software.

https://github.com/ahmeddhus/dart_operators_names

This repository serves as a reference guide to Dart operators and their names. If you've ever wondered what a particular operator is called in Dart, you're in the right place!
https://github.com/ahmeddhus/dart_operators_names

dart

Last synced: 27 days ago
JSON representation

This repository serves as a reference guide to Dart operators and their names. If you've ever wondered what a particular operator is called in Dart, you're in the right place!

Awesome Lists containing this project

README

        

# Dart Operators Names

This repository serves as a reference guide to Dart operators and their names. If you've ever wondered/forgotten what a particular operator is called in Dart, you're in the right place!

## Operators and Their Meanings

Operator | Meaning
--- | --- |
?? | Null-aware assignment operator
Ternary Conditional Operator | ? : (isA ? true : false)
??= | If-null operator
?. | Null-aware access & method invocation operator
! | Null assertion operator
?.. | Null-aware cascade operator
?[] | Null-aware index operator
...? | Null-aware spread operator
.. | Cascade Operator
... | Spread Operator
^ | Caret sign
=> | fat arrow/arrow function
& | the Ampersand