MessageParameter constructor

const MessageParameter(
  1. String name,
  2. Type type, {
  3. bool optional = false,
  4. String value = '',
})

Implementation

const MessageParameter(
  this.name,
  this.type, {
  this.optional = false,
  this.value = '',
});