toJson method

Map<String, Object?> toJson()

Implementation

Map<String, Object?> toJson() {
  var pluginKey = this.pluginKey;
  var moduleKey = this.moduleKey;

  final json = <String, Object?>{};
  json[r'pluginKey'] = pluginKey;
  json[r'moduleKey'] = moduleKey;
  return json;
}