copyWith method

AddSavedAnimation copyWith({
  1. InputFile? animation,
})

Implementation

AddSavedAnimation copyWith({
  InputFile? animation,
}) =>
    AddSavedAnimation(
      animation: animation ?? this.animation,
    );