SFSEOModel constructor

const SFSEOModel({
  1. required String title,
  2. String? description,
  3. List<String>? keywords = const [],
  4. String? imageUrl,
  5. String? url,
})

Implementation

const SFSEOModel({
  required this.title,
  this.description,
  this.keywords = const [],
  this.imageUrl,
  this.url,
});