toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final actionItem = this.actionItem;
  final code = this.code;
  final helpLinks = this.helpLinks;
  final warningMessage = this.warningMessage;
  final warningTime = this.warningTime;
  return {
    'actionItem': ?actionItem,
    'code': ?code,
    'helpLinks': ?helpLinks,
    'warningMessage': ?warningMessage,
    'warningTime': ?warningTime,
  };
}