copyWith method

InputPageBlockMathematicalExpression copyWith({
  1. String? expression,
})

Implementation

InputPageBlockMathematicalExpression copyWith({String? expression}) =>
    InputPageBlockMathematicalExpression(
      expression: expression ?? this.expression,
    );