toMap method

Map<String, Object?> toMap()

Implementation

Map<String, Object?> toMap() {
  return {
    _kTitle: title,
    _kAuthor: author,
    'baseUrl': baseUrl,
    _kBuild: build.toMap(),
    _kServe: serve.toMap(),
    _kTemplates: templates.toMap(),
    _kExtra: extra,
  };
}