fromString static method
Implementation
static CommonError fromString(String error) {
return CommonError((b) => b
..errorCode = "Runtime"
..description = error
..status = 0
..dismissed = false
..stack = ""
..unauthorized = false);
}