errorCode property

  1. @JsonKey(name: 'errorCode', fromJson: decodePlatformErrorCodes, toJson: encodePlatformErrorCodes)
PlatformErrorCodes? errorCode
getter/setter pair

The error that we encountered. You should be able to look up localized text to show to the user for these failures.

Implementation

@JsonKey(name:'errorCode',fromJson:decodePlatformErrorCodes,toJson:encodePlatformErrorCodes)
PlatformErrorCodes? errorCode;