toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final registryArn = this.registryArn;
  final registryName = this.registryName;
  return {
    if (registryArn != null) 'RegistryArn': registryArn,
    if (registryName != null) 'RegistryName': registryName,
  };
}