AbiParameter constructor

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

Constructor for AbiParameter.

Implementation

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