copyWith method

  1. @override
SFSEOModel copyWith({
  1. String? id,
  2. String? title,
  3. String? description,
  4. List<String>? keywords,
  5. String? imageUrl,
  6. String? url,
})
override

Implementation

@override
SFSEOModel copyWith({
  String? id,
  String? title,
  String? description,
  List<String>? keywords,
  String? imageUrl,
  String? url,
}) {
  return SFSEOModel(
    title: title ?? this.title,
    description: description ?? this.description,
    keywords: keywords ?? this.keywords,
    imageUrl: imageUrl ?? this.imageUrl,
    url: url ?? this.url,
  );
}