CustomParameter<T> constructor

CustomParameter<T>(
  1. String name,
  2. RegExp pattern,
  3. Transformer<T?> transformer, {
  4. String identifierPrefix = '{',
  5. String identifierSuffix = '}',
  6. bool includeInParameterList = true,
})

Implementation

CustomParameter(
  this.name,
  this.pattern,
  this.transformer, {
  this.identifierPrefix = '{',
  this.identifierSuffix = '}',
  this.includeInParameterList = true,
});