copyWith method

TheMovieKeyword copyWith({
  1. int? id,
  2. String? name,
})

Implementation

TheMovieKeyword copyWith({
  int? id,
  String? name,
}) =>
    TheMovieKeyword(
      id: id ?? this.id,
      name: name ?? this.name,
    );