fromJsonStorage static method
Implementation
static PubkeyMapping fromJsonStorage(Map<String, Object?> json) {
return PubkeyMapping(
pubKey: json['pubKey'] as String,
rwMarker: ReadWriteMarkerExtension.fromJsonStorage(
json['rwMarker'] as Map<String, Object?>),
);
}