name property
Output variable name.
@CustomInfo('myResult')
const someNameHereNotImportant = 'command', 'arg1', 'arg2'
;
will generate name:
const 'myResult' = 'xxx';
Implementation
final String name;
Output variable name.
@CustomInfo('myResult')
const someNameHereNotImportant = 'command', 'arg1', 'arg2'
;
will generate name:
const 'myResult' = 'xxx';
final String name;