toJson method

Map<String, Object?> toJson()

Implementation

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

  final json = <String, Object?>{};
  json[r'spaceKey'] = spaceKey;
  json[r'lookAndFeelType'] = lookAndFeelType.value;
  return json;
}