copyWith method

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

Implementation

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