convertFromPigeon static method

SKError convertFromPigeon(
  1. SKErrorMessage msg
)

Converts SKErrorMessage into the dart equivalent

Implementation

static SKError convertFromPigeon(SKErrorMessage msg) {
  return SKError(
      code: msg.code,
      domain: msg.domain,
      userInfo: msg.userInfo ?? <String, Object>{});
}