fromMap static method

SNSMobileSDKResult fromMap(
  1. Map map
)

Implementation

static SNSMobileSDKResult fromMap(Map<dynamic, dynamic> map) {

  return SNSMobileSDKResult(map['success'] as bool? ?? false, _toStatus(map['status']), _toErrorType(map['errorType']), map['errorMsg'], map['actionResult'] != null ? _toActionResult(map['actionResult']) : null);
}