jsonMap method

Map<String, dynamic> jsonMap({
  1. bool asHex = false,
})

Implementation

Map<String, dynamic> jsonMap({bool asHex = false}) => {
      "der": (asHex) ? bytesToHex(Uint8List.fromList(der)) : der.toList(),
    };