copyWith method

Input$FileDeletion copyWith({
  1. String? path,
})

Implementation

Input$FileDeletion copyWith({String? path}) =>
    Input$FileDeletion(path: path == null ? this.path : path);