toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dateOptions = this.dateOptions;
  final id = this.id;
  final integerOptions = this.integerOptions;
  final selectionOptions = this.selectionOptions;
  final textOptions = this.textOptions;
  final updateMask = this.updateMask;
  final userOptions = this.userOptions;
  return {
    'dateOptions': ?dateOptions,
    'id': ?id,
    'integerOptions': ?integerOptions,
    'selectionOptions': ?selectionOptions,
    'textOptions': ?textOptions,
    'updateMask': ?updateMask,
    'userOptions': ?userOptions,
  };
}