emptyOrMulticastConfiguration static method
Implementation
static MulticastConfiguration? emptyOrMulticastConfiguration(
Map<String, dynamic>? json,
) => json != null && json.keys.isNotEmpty
? MulticastConfiguration.fromJson(json)
: null;
static MulticastConfiguration? emptyOrMulticastConfiguration(
Map<String, dynamic>? json,
) => json != null && json.keys.isNotEmpty
? MulticastConfiguration.fromJson(json)
: null;