BaseMetaCommand.fromCmd constructor
Implementation
BaseMetaCommand.fromCmd(String? cmd, ID did, Meta? meta)
: super.fromCmd(cmd ?? Command.META) {
// ID
this['did'] = did.toString();
// meta
if (meta != null) {
this['meta'] = meta.toMap();
}
_meta = meta;
}