getPlatformCode method

dynamic getPlatformCode()

Gets the platform-specific error code for this error

Implementation

dynamic getPlatformCode() {
  if (code == null || platform == null) return null;
  return ErrorCodeUtils.toPlatformCode(code!, platform!);
}