fromInt static method

SyncSessionErrorCode fromInt(
  1. int code
)

Implementation

static SyncSessionErrorCode fromInt(int code) {
  return SyncSessionErrorCode._valuesMap[code] ?? SyncSessionErrorCode.unknown;
}