getAssetExchangeRecordsPeriodic method

void getAssetExchangeRecordsPeriodic(
  1. {String? direction,
  2. int? from,
  3. int? limit,
  4. required Duration period}
)

Implementation

void getAssetExchangeRecordsPeriodic(
    {String? direction, int? from, int? limit, required Duration period}) {
  log.i('Get asset exchange records periodically.');
  rest.getAssetExchangeRecordsPeriodic(
      direction: direction, from: from, limit: limit, period: period);
}