TransactionInfo.fromJson constructor

TransactionInfo.fromJson(
  1. Map json_
)

Implementation

TransactionInfo.fromJson(core.Map json_)
    : this(
        transactionId: json_.containsKey('transactionId')
            ? json_['transactionId'] as core.String
            : null,
      );