AbiParameter constructor

const AbiParameter({
  1. required String? name,
  2. required String type,
  3. String? baseType,
  4. bool indexed = false,
  5. List<AbiParameter> components = const [],
  6. String? internalType,
})

Constructor for AbiParameter.

Implementation

const AbiParameter({
  /// The name of the parameter.
  required this.name,
  required this.type,
  this.baseType,
  this.indexed = false,
  this.components = const [],
  this.internalType,
});