decode static method

NativeConstructorConfig decode(
  1. Object result
)

Implementation

static NativeConstructorConfig decode(Object result) {
  result as List<Object?>;
  return NativeConstructorConfig(
    debug: result[0]! as bool,
    enableCustomLogging: result[1] as bool?,
    enableExceptionCapture: result[2] as bool?,
    alsoNativeLogs: result[3] as bool?,
  );
}