getSlotRaw method

Future<JsonRpcSuccessResponse<u64>> getSlotRaw({
  1. GetSlotConfig? config,
})

Returns the slot that has reached the given or default GetSlotConfig.commitment level.

Implementation

Future<JsonRpcSuccessResponse<u64>> getSlotRaw({
  final GetSlotConfig? config,
}) =>
    send(GetSlot(config: config));