HyperswitchException.fromMap constructor
Constructs an Error object from a map.
Implementation
factory HyperswitchException.fromMap(Map<String, dynamic> map) {
return HyperswitchException(
code: map['code'] ?? '',
message: map['message'] ?? '',
);
}