constructorFieldInitializer abstract method

ConstructorFieldInitializer constructorFieldInitializer(
  1. Token? thisKeyword,
  2. Token? period,
  3. SimpleIdentifier fieldName,
  4. Token equals,
  5. 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);