Input$ConfigDLNAInput constructor
Implementation
factory Input$ConfigDLNAInput({
String? serverName,
bool? enabled,
int? port,
List<String>? whitelistedIPs,
List<String>? interfaces,
String? videoSortOrder,
}) => Input$ConfigDLNAInput._({
if (serverName != null) r'serverName': serverName,
if (enabled != null) r'enabled': enabled,
if (port != null) r'port': port,
if (whitelistedIPs != null) r'whitelistedIPs': whitelistedIPs,
if (interfaces != null) r'interfaces': interfaces,
if (videoSortOrder != null) r'videoSortOrder': videoSortOrder,
});