constructorFieldInitializer abstract method
ConstructorFieldInitializer
constructorFieldInitializer(
- Token? thisKeyword,
- Token? period,
- SimpleIdentifier fieldName,
- Token equals,
- Expression expression,
Returns a newly created field initializer to initialize the field with
the given name to the value of the given expression. The thisKeyword
and
period
can be null
if the 'this' keyword was not specified.
Implementation
ConstructorFieldInitializer constructorFieldInitializer(
Token? thisKeyword,
Token? period,
SimpleIdentifier fieldName,
Token equals,
Expression expression);