decode static method
Implementation
static NeLiveConfig decode(Object message) {
final Map<Object?, Object?> pigeonMap = message as Map<Object?, Object?>;
return NeLiveConfig(
isCloseTimeOutProtect: pigeonMap['isCloseTimeOutProtect'] as bool?,
refreshPreLoadDuration: pigeonMap['refreshPreLoadDuration'] as int?,
thirdUserId: pigeonMap['thirdUserId'] as String?,
);
}