tryParse static method
Creates an instance of this
class from the constructor parameters defined in the json
object.
Return null
if json
is omitted.
TransactionInfo.tryParse({ '<parameter>': <value> });
Implementation
static TransactionInfo? tryParse(final Map<String, dynamic>? json) =>
json != null ? parse(json) : null;