copyWith method

Vat copyWith({
  1. String? type,
})

Implementation

Vat copyWith({
  String? type,
}) =>
    Vat(
      type: type ?? this.type,
    );