copyWith method

Metadata copyWith({
  1. String? customer,
})

Implementation

Metadata copyWith({
  String? customer,
}) =>
    Metadata(
      customer: customer ?? this.customer,
    );