BcsConfig constructor

BcsConfig({
  1. required String vectorType,
  2. required int addressLength,
  3. String? fixedArrayType,
  4. Encoding? addressEncoding,
  5. (String, String)? genericSeparators,
  6. BcsConfigTypes? types,
  7. bool? withPrimitives,
})

Implementation

BcsConfig({
  required this.vectorType,
  required this.addressLength,
  this.fixedArrayType,
  this.addressEncoding,
  this.genericSeparators,
  this.types,
  this.withPrimitives
});