decode static method

NeLiveConfig decode(
  1. Object message
)

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?,
  );
}