copyWith method
SFSEOModel
copyWith({
- String? id,
- String? title,
- String? description,
- List<
String> ? keywords, - String? imageUrl,
- 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,
);
}