fromJson static method

InputPageBlockMathematicalExpression? fromJson(
  1. Map<String, dynamic>? json
)
override

Implementation

static InputPageBlockMathematicalExpression? fromJson(
  Map<String, dynamic>? json,
) {
  if (json == null) {
    return null;
  }

  return InputPageBlockMathematicalExpression(
    expression: (json['expression'] as String?) ?? '',
  );
}