toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (boolValue != null) 'boolValue': boolValue!,
      if (errorValue != null) 'errorValue': errorValue!,
      if (formulaValue != null) 'formulaValue': formulaValue!,
      if (numberValue != null) 'numberValue': numberValue!,
      if (stringValue != null) 'stringValue': stringValue!,
    };