toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final groupOwnerSetting = this.groupOwnerSetting;
  final sourcePath = this.sourcePath;
  return {
    if (groupOwnerSetting != null) 'GroupOwnerSetting': groupOwnerSetting,
    if (sourcePath != null) 'SourcePath': sourcePath,
  };
}