copyWith method

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

Implementation

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