toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final basic = this.basic;
  final custom = this.custom;
  final description = this.description;
  final name = this.name;
  final title = this.title;
  return {
    'basic': ?basic,
    'custom': ?custom,
    'description': ?description,
    'name': ?name,
    'title': ?title,
  };
}