havingBaseSize method

MathOptions havingBaseSize()

Returns MathOptions with size reset to MathSize.normalsize

Implementation

MathOptions havingBaseSize() {
  if (this.sizeUnderTextStyle == MathSize.normalsize) return this;
  return this.copyWith(
    sizeUnderTextStyle: MathSize.normalsize,
  );
}