copyWith method

VendorConfigFromAsset copyWith({
  1. String? path,
})

Implementation

VendorConfigFromAsset copyWith({
  String? path
}) {
  return VendorConfigFromAsset(
    path ?? this.path
  );
}