LatestBlockhashResponse constructor

LatestBlockhashResponse({
  1. required String blockhash,
  2. required int lastValidBlockHeight,
})

Returns a new LatestBlockhashResponse instance.

Implementation

LatestBlockhashResponse({
  required this.blockhash,
  required this.lastValidBlockHeight,
});