toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final channelId = this.channelId;
  final defaultLanguage = this.defaultLanguage;
  final localized = this.localized;
  final position = this.position;
  final style = this.style;
  final title = this.title;
  final type = this.type;
  return {
    'channelId': ?channelId,
    'defaultLanguage': ?defaultLanguage,
    'localized': ?localized,
    'position': ?position,
    'style': ?style,
    'title': ?title,
    'type': ?type,
  };
}