getMomentumBeforeTime method

Future<Momentum?> getMomentumBeforeTime(
  1. int time
)

Implementation

Future<Momentum?> getMomentumBeforeTime(int time) async {
  var response =
      await client.sendRequest('ledger.getMomentumBeforeTime', [time]);
  return response == null ? null : Momentum.fromJson(response);
}