decode static method

NeLiveConfig decode(
  1. Object result
)

Implementation

static NeLiveConfig decode(Object result) {
  result as List<Object?>;
  return NeLiveConfig(
    isCloseTimeOutProtect: result[0] as bool?,
    refreshPreLoadDuration: result[1] as int?,
    thirdUserId: result[2] as String?,
  );
}