fromMessage static method

DeleteTransactionRange fromMessage(
  1. Map<String, dynamic> msg
)

Implementation

static DeleteTransactionRange fromMessage(Map<String, dynamic> msg) {
  return DeleteTransactionRange(
    low: msg['low'],
    hi: msg['hi'],
  );
}