toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final actionsConfig = this.actionsConfig;
  final configTemplate = this.configTemplate;
  final createTime = this.createTime;
  final description = this.description;
  final displayName = this.displayName;
  final documentation = this.documentation;
  final gatewayType = this.gatewayType;
  final hostingService = this.hostingService;
  final name = this.name;
  final ownershipType = this.ownershipType;
  final pluginCategory = this.pluginCategory;
  final state = this.state;
  final type = this.type;
  final updateTime = this.updateTime;
  return {
    'actionsConfig': ?actionsConfig,
    'configTemplate': ?configTemplate,
    'createTime': ?createTime,
    'description': ?description,
    'displayName': ?displayName,
    'documentation': ?documentation,
    'gatewayType': ?gatewayType,
    'hostingService': ?hostingService,
    'name': ?name,
    'ownershipType': ?ownershipType,
    'pluginCategory': ?pluginCategory,
    'state': ?state,
    'type': ?type,
    'updateTime': ?updateTime,
  };
}