Normal constructor

Normal(
  1. double input
)

Implementation

factory Normal(double input) {
  return Normal._(
    validateNormal(input),
  );
}