fromNative static method

ExperimentData fromNative(
  1. ExperimentDataNative native
)

Implementation

static ExperimentData fromNative(ExperimentDataNative native) {
  return ExperimentData(
      testId: native.testId,
      userGroup: native.userGroup,
      userBucket: native.userBucket);
}