toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cardActions = this.cardActions;
  final header = this.header;
  final name = this.name;
  final sections = this.sections;
  return {
    'cardActions': ?cardActions,
    'header': ?header,
    'name': ?name,
    'sections': ?sections,
  };
}