toJson method

  1. @override
Map<String, Object?> toJson()
override

Implementation

@override
Map<String, Object?> toJson() => super.toJson()
  ..addAll({
    'symbol': unicodeLiteral(symbol),
    if (above != null) 'above': above!.toJson(),
    if (below != null) 'below': below!.toJson(),
  });