copyWith method

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

Implementation

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