commit
5fe14567cd
@ -0,0 +1,30 @@
|
|||||||
|
.DS_Store
|
||||||
|
.dart_tool/
|
||||||
|
|
||||||
|
.packages
|
||||||
|
.pub/
|
||||||
|
pubspec.lock
|
||||||
|
|
||||||
|
build/
|
||||||
|
|
||||||
|
# Gradle directory
|
||||||
|
.gradle/
|
||||||
|
|
||||||
|
# Java class files
|
||||||
|
*.class
|
||||||
|
|
||||||
|
# IntelliJ
|
||||||
|
*.iml
|
||||||
|
.idea/workspace.xml
|
||||||
|
.idea/tasks.xml
|
||||||
|
.idea/gradle.xml
|
||||||
|
.idea/assetWizardSettings.xml
|
||||||
|
.idea/dictionaries
|
||||||
|
.idea/libraries
|
||||||
|
.idea/caches
|
||||||
|
.idea
|
||||||
|
|
||||||
|
# generated files
|
||||||
|
bin/
|
||||||
|
gen/
|
||||||
|
out/
|
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
// Use IntelliSense to learn about possible attributes.
|
||||||
|
// Hover to view descriptions of existing attributes.
|
||||||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
|
||||||
|
{
|
||||||
|
"name": "Flutter",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "dart"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
**Document Language:** **English** | **[中文](https://github.com/MobClub/ShareSDK-For-Flutter/blob/master/README_CN.md)**
|
||||||
|
|
||||||
|
# ShareSDK For Flutter
|
||||||
|
### See detail in sharesdk_plugin folder
|
||||||
|
|
@ -0,0 +1,5 @@
|
|||||||
|
**文档语言 :** **中文** | **[English](https://github.com/MobClub/ShareSDK-For-Flutter/blob/master/README.md)**
|
||||||
|
|
||||||
|
# ShareSDK For Flutter
|
||||||
|
### 详见 sharesdk_plugin 文件夹
|
||||||
|
|
@ -0,0 +1,30 @@
|
|||||||
|
.DS_Store
|
||||||
|
.dart_tool/
|
||||||
|
|
||||||
|
.packages
|
||||||
|
.pub/
|
||||||
|
pubspec.lock
|
||||||
|
|
||||||
|
build/
|
||||||
|
|
||||||
|
# Gradle directory
|
||||||
|
.gradle/
|
||||||
|
|
||||||
|
# Java class files
|
||||||
|
*.class
|
||||||
|
|
||||||
|
# IntelliJ
|
||||||
|
*.iml
|
||||||
|
.idea/workspace.xml
|
||||||
|
.idea/tasks.xml
|
||||||
|
.idea/gradle.xml
|
||||||
|
.idea/assetWizardSettings.xml
|
||||||
|
.idea/dictionaries
|
||||||
|
.idea/libraries
|
||||||
|
.idea/caches
|
||||||
|
.idea
|
||||||
|
|
||||||
|
# generated files
|
||||||
|
bin/
|
||||||
|
gen/
|
||||||
|
out/
|
@ -0,0 +1,10 @@
|
|||||||
|
# This file tracks properties of this Flutter project.
|
||||||
|
# Used by Flutter tool to assess capabilities and perform upgrades etc.
|
||||||
|
#
|
||||||
|
# This file should be version controlled and should not be manually edited.
|
||||||
|
|
||||||
|
version:
|
||||||
|
revision: 20e59316b8b8474554b38493b8ca888794b0234a
|
||||||
|
channel: stable
|
||||||
|
|
||||||
|
project_type: plugin
|
@ -0,0 +1 @@
|
|||||||
|
Add your license here.
|
@ -0,0 +1,147 @@
|
|||||||
|
**Document Language:** **English** | **[中文](https://github.com/MobClub/ShareSDK-For-Flutter/blob/master/README_CN.md)**
|
||||||
|
|
||||||
|
# ShareSDK For Flutter
|
||||||
|
### ShareSDK is a social sharing component that provides social functions for apps, like authorization and share, and has social statistical analysis management background.
|
||||||
|
|
||||||
|
**supported original ShareSDK minimum version:**
|
||||||
|
|
||||||
|
- [Android](https://github.com/MobClub/ShareSDK-for-Android) - V3.4.0
|
||||||
|
- [iOS](https://github.com/MobClub/ShareSDK-for-iOS) - V4.3.2
|
||||||
|
|
||||||
|
**introduce:** http://www.mob.com/product/sharesdk
|
||||||
|
|
||||||
|
**plugin homepage:** https://pub.dartlang.org/packages/sharesdk_plugin
|
||||||
|
|
||||||
|
**official document:** http://wiki.mob.com/快速集成/
|
||||||
|
|
||||||
|
## Getting Started
|
||||||
|
|
||||||
|
Refer to [the official document](https://pub.dartlang.org/packages/sharesdk#-installing-tab-)
|
||||||
|
|
||||||
|
If you need to customize the platforms:
|
||||||
|
|
||||||
|
### iOS
|
||||||
|
You need to editor *sharesdk.podspec* , please refer to [official website document](http://wiki.mob.com/cocoapods%E9%9B%86%E6%88%90/) for supported platforms.
|
||||||
|
|
||||||
|
```
|
||||||
|
#
|
||||||
|
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
|
||||||
|
#
|
||||||
|
Pod::Spec.new do |s|
|
||||||
|
s.name = 'sharesdk'
|
||||||
|
s.version = '0.0.1'
|
||||||
|
s.summary = 'flutter plugin for sharesdk.'
|
||||||
|
s.description = 'ShareSDK is the most comprehensive Social SDK in the world,which share easily with 40+ platforms.'
|
||||||
|
s.homepage = 'http://www.mob.com'
|
||||||
|
s.license = { :file => '../LICENSE' }
|
||||||
|
s.author = { 'Mob' => 'mobproducts@163.com' }
|
||||||
|
s.source = { :path => '.' }
|
||||||
|
s.source_files = 'Classes/**/*'
|
||||||
|
s.public_header_files = 'Classes/**/*.h'
|
||||||
|
s.dependency 'Flutter'
|
||||||
|
s.dependency 'mob_sharesdk'
|
||||||
|
# s.dependency 'mob_sharesdk/ShareSDKUI'
|
||||||
|
# s.dependency 'mob_sharesdk/ShareSDKPlatforms/QQ'
|
||||||
|
# s.dependency 'mob_sharesdk/ShareSDKPlatforms/SinaWeibo'
|
||||||
|
# s.dependency 'mob_sharesdk/ShareSDKPlatforms/WeChat'
|
||||||
|
# s.dependency 'mob_sharesdk/ShareSDKPlatforms/Facebook'
|
||||||
|
# s.dependency 'mob_sharesdk/ShareSDKPlatforms/Twitter'
|
||||||
|
|
||||||
|
s.ios.deployment_target = '8.0'
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
|
Then you need to configure Appkey and AppSecret in info.plist according to [the official document](http://wiki.mob.com/快速集成/), as well as the whitelist and urlScheme of each platform.
|
||||||
|
|
||||||
|
### Android
|
||||||
|
You need to edit build.gradle, mobsdk.gradle file again to select the platform you need to use,
|
||||||
|
For specific supported platforms, please refer to [official website technical documentation](http://wiki.mob.com/%E5%AE%8C%E6%95%B4%E9%9B%86%E6%88%90%E6%96%87%E6%A1%A3%EF%BC%88gradle%EF%BC%89/)
|
||||||
|
To meet the requirements of the example project, you need to configure at least the following platforms:
|
||||||
|
|
||||||
|
#### build.gradle
|
||||||
|
|
||||||
|
```
|
||||||
|
buildscript {
|
||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
jcenter()
|
||||||
|
maven {
|
||||||
|
url "http://mvn.mob.com/android"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
classpath 'com.android.tools.build:gradle:3.1.2'
|
||||||
|
classpath 'com.mob.sdk:MobSDK:+'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
#### mobsdk.gradle
|
||||||
|
|
||||||
|
```
|
||||||
|
MobSDK {
|
||||||
|
appKey "moba6b6c6d6"
|
||||||
|
appSecret "b89d2427a3bc7ad1aea1e1e8c1d36bf3"
|
||||||
|
|
||||||
|
ShareSDK {
|
||||||
|
|
||||||
|
// platform configuration information
|
||||||
|
devInfo {
|
||||||
|
QQ {
|
||||||
|
id 7
|
||||||
|
sortId 7
|
||||||
|
appId "100371282"
|
||||||
|
appKey "aed9b0303e3ed1e27bae87c33761161d"
|
||||||
|
shareByAppClient true
|
||||||
|
bypassApproval false
|
||||||
|
enable true
|
||||||
|
}
|
||||||
|
|
||||||
|
SinaWeibo {
|
||||||
|
id 1
|
||||||
|
sortId 1
|
||||||
|
appKey "568898243"
|
||||||
|
appSecret "38a4f8204cc784f81f9f0daaf31e02e3"
|
||||||
|
callbackUri "http://www.sharesdk.cn"
|
||||||
|
shareByAppClient true
|
||||||
|
enable true
|
||||||
|
}
|
||||||
|
|
||||||
|
Wechat {
|
||||||
|
id 4
|
||||||
|
sortId 4
|
||||||
|
appId "wx4868b35061f87885"
|
||||||
|
appSecret "64020361b8ec4c99936c0e3999a9f249"
|
||||||
|
userName "gh_afb25ac019c9"
|
||||||
|
path "pages/index/index.html?id=1"
|
||||||
|
withShareTicket true
|
||||||
|
miniprogramType 0
|
||||||
|
bypassApproval false
|
||||||
|
enable true
|
||||||
|
}
|
||||||
|
|
||||||
|
Facebook {
|
||||||
|
id 8
|
||||||
|
sortId 8
|
||||||
|
appKey "1412473428822331"
|
||||||
|
appSecret "a42f4f3f867dc947b9ed6020c2e93558"
|
||||||
|
callbackUri "https://mob.com"
|
||||||
|
shareByAppClient true
|
||||||
|
enable true
|
||||||
|
}
|
||||||
|
|
||||||
|
Twitter {
|
||||||
|
id 9
|
||||||
|
sortId 9
|
||||||
|
appKey "viOnkeLpHBKs6KXV7MPpeGyzE"
|
||||||
|
appSecret "NJEglQUy2rqZ9Io9FcAU9p17omFqbORknUpRrCDOK46aAbIiey"
|
||||||
|
callbackUri "http://mob.com"
|
||||||
|
shareByAppClient true
|
||||||
|
enable true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
@ -0,0 +1,8 @@
|
|||||||
|
*.iml
|
||||||
|
.gradle
|
||||||
|
/local.properties
|
||||||
|
/.idea/workspace.xml
|
||||||
|
/.idea/libraries
|
||||||
|
.DS_Store
|
||||||
|
/build
|
||||||
|
/captures
|
@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<projectDescription>
|
||||||
|
<name>android_</name>
|
||||||
|
<comment>Project android_ created by Buildship.</comment>
|
||||||
|
<projects>
|
||||||
|
</projects>
|
||||||
|
<buildSpec>
|
||||||
|
<buildCommand>
|
||||||
|
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
</buildSpec>
|
||||||
|
<natures>
|
||||||
|
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
|
||||||
|
</natures>
|
||||||
|
</projectDescription>
|
@ -0,0 +1,112 @@
|
|||||||
|
group 'com.yoozoo.sharesdk'
|
||||||
|
version '1.0-SNAPSHOT'
|
||||||
|
apply plugin: 'com.android.library'
|
||||||
|
//apply from: 'MobSDK.gradle'
|
||||||
|
apply plugin: 'com.mob.sdk'
|
||||||
|
|
||||||
|
buildscript {
|
||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
jcenter()
|
||||||
|
maven {
|
||||||
|
url "http://mvn.mob.com/android"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
classpath 'com.android.tools.build:gradle:3.5.1'
|
||||||
|
classpath 'com.mob.sdk:MobSDK:+'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*allprojects {
|
||||||
|
repositories {
|
||||||
|
jcenter()
|
||||||
|
maven {
|
||||||
|
url "http://mvn.mob.com/android"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}*/
|
||||||
|
|
||||||
|
rootProject.allprojects {
|
||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
jcenter()
|
||||||
|
maven {
|
||||||
|
url "http://mvn.mob.com/android"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
android {
|
||||||
|
compileSdkVersion 28
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
minSdkVersion 16
|
||||||
|
}
|
||||||
|
lintOptions {
|
||||||
|
disable 'InvalidPackage'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||||||
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
||||||
|
}
|
||||||
|
|
||||||
|
MobSDK {
|
||||||
|
ShareSDK {
|
||||||
|
loopShare true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def localProperties = new Properties()
|
||||||
|
def localPropertiesFile = rootProject.file('local.properties')
|
||||||
|
if (localPropertiesFile.exists()) {
|
||||||
|
localPropertiesFile.withReader('UTF-8') { reader ->
|
||||||
|
localProperties.load(reader)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def flutterRoot = localProperties.getProperty('flutter.sdk')
|
||||||
|
if (flutterRoot == null) {
|
||||||
|
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
|
||||||
|
}
|
||||||
|
|
||||||
|
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
||||||
|
if (flutterVersionCode == null) {
|
||||||
|
flutterVersionCode = '1'
|
||||||
|
}
|
||||||
|
|
||||||
|
def flutterVersionName = localProperties.getProperty('flutter.versionName')
|
||||||
|
if (flutterVersionName == null) {
|
||||||
|
flutterVersionName = '1.0'
|
||||||
|
}
|
||||||
|
|
||||||
|
android {
|
||||||
|
compileSdkVersion 28
|
||||||
|
|
||||||
|
lintOptions {
|
||||||
|
disable 'InvalidPackage'
|
||||||
|
}
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||||||
|
minSdkVersion 16
|
||||||
|
targetSdkVersion 28
|
||||||
|
versionCode flutterVersionCode.toInteger()
|
||||||
|
versionName flutterVersionName
|
||||||
|
}
|
||||||
|
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
// TODO: Add your own signing config for the release build.
|
||||||
|
// Signing with the debug keys for now, so `flutter run --release` works.
|
||||||
|
signingConfig signingConfigs.debug
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
org.gradle.jvmargs=-Xmx1536M
|
@ -0,0 +1,16 @@
|
|||||||
|
rootProject.name = 'sharesdk'
|
||||||
|
include ':sharesdk'
|
||||||
|
|
||||||
|
def flutterProjectRoot = rootProject.projectDir.parentFile.toPath()
|
||||||
|
|
||||||
|
def plugins = new Properties()
|
||||||
|
def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins')
|
||||||
|
if (pluginsFile.exists()) {
|
||||||
|
pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) }
|
||||||
|
}
|
||||||
|
|
||||||
|
plugins.each { name, path ->
|
||||||
|
def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile()
|
||||||
|
include ":$name"
|
||||||
|
project(":$name").projectDir = pluginDirectory
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="com.yoozoo.sharesdk">
|
||||||
|
|
||||||
|
<application>
|
||||||
|
|
||||||
|
</application>
|
||||||
|
|
||||||
|
</manifest>
|
@ -0,0 +1,50 @@
|
|||||||
|
package com.yoozoo.sharesdk;
|
||||||
|
|
||||||
|
import android.app.Activity;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.os.Handler;
|
||||||
|
import android.os.Message;
|
||||||
|
import android.util.Log;
|
||||||
|
|
||||||
|
import com.mob.tools.utils.Hashon;
|
||||||
|
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Observable;
|
||||||
|
|
||||||
|
import cn.sharesdk.framework.ShareSDK;
|
||||||
|
import cn.sharesdk.framework.loopshare.LoopShareResultListener;
|
||||||
|
|
||||||
|
import static com.yoozoo.sharesdk.SharesdkPlugin.IS_ALIVE;
|
||||||
|
|
||||||
|
public class FlutterLoopSharePrepare {
|
||||||
|
|
||||||
|
public static final String LOOPSHARE_NEWS = "loopsharenews";
|
||||||
|
|
||||||
|
public void prepare(final Context context, final Class<?> targetActivity) {
|
||||||
|
/**
|
||||||
|
* loopshare init and set Listener
|
||||||
|
* **/
|
||||||
|
ShareSDK.prepareLoopShare(new LoopShareResultListener() {
|
||||||
|
@Override
|
||||||
|
public void onResult(Object var1) {
|
||||||
|
String test = new Hashon().fromHashMap((HashMap<String, Object>) var1);
|
||||||
|
Log.e("WWW", "LoopShareResultListener onResult " + test);
|
||||||
|
|
||||||
|
Log.e("WWW", "SP的数据=====》 " + ShareSDK.getCustomDataFromLoopShare());
|
||||||
|
|
||||||
|
Intent intent = new Intent();
|
||||||
|
intent.setClass(context, targetActivity);
|
||||||
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
|
context.startActivity(intent);
|
||||||
|
IS_ALIVE = 456;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onError(Throwable t) {
|
||||||
|
Log.e("WWW", "LoopShareResultListener onError " + t);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,60 @@
|
|||||||
|
package com.yoozoo.sharesdk;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
public class StrUtils {
|
||||||
|
|
||||||
|
public static String format(String sepStr, HashMap<String, Object> map) {
|
||||||
|
StringBuffer sb = new StringBuffer();
|
||||||
|
sb.append("{\n");
|
||||||
|
String mySepStr = sepStr + "\t";
|
||||||
|
int i = 0;
|
||||||
|
for (Map.Entry<String, Object> entry : map.entrySet()) {
|
||||||
|
if (i > 0) {
|
||||||
|
sb.append(",\n");
|
||||||
|
}
|
||||||
|
sb.append(mySepStr).append('\"').append(entry.getKey()).append("\":");
|
||||||
|
Object value = entry.getValue();
|
||||||
|
if (value instanceof HashMap<?, ?>) {
|
||||||
|
sb.append(format(mySepStr, (HashMap<String, Object>)value));
|
||||||
|
} else if (value instanceof ArrayList<?>) {
|
||||||
|
sb.append(format(mySepStr, (ArrayList<Object>)value));
|
||||||
|
} else if (value instanceof String) {
|
||||||
|
sb.append('\"').append(value).append('\"');
|
||||||
|
} else {
|
||||||
|
sb.append(value);
|
||||||
|
}
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
sb.append('\n').append(sepStr).append('}');
|
||||||
|
return sb.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
private static String format(String sepStr, ArrayList<Object> list) {
|
||||||
|
StringBuffer sb = new StringBuffer();
|
||||||
|
sb.append("[\n");
|
||||||
|
String mySepStr = sepStr + "\t";
|
||||||
|
int i = 0;
|
||||||
|
for (Object value : list) {
|
||||||
|
if (i > 0) {
|
||||||
|
sb.append(",\n");
|
||||||
|
}
|
||||||
|
sb.append(mySepStr);
|
||||||
|
if (value instanceof HashMap<?, ?>) {
|
||||||
|
sb.append(format(mySepStr, (HashMap<String, Object>)value));
|
||||||
|
} else if (value instanceof ArrayList<?>) {
|
||||||
|
sb.append(format(mySepStr, (ArrayList<Object>)value));
|
||||||
|
} else if (value instanceof String) {
|
||||||
|
sb.append('\"').append(value).append('\"');
|
||||||
|
} else {
|
||||||
|
sb.append(value);
|
||||||
|
}
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
sb.append('\n').append(sepStr).append(']');
|
||||||
|
return sb.toString();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,28 @@
|
|||||||
|
package com.yoozoo.sharesdk;
|
||||||
|
|
||||||
|
import android.os.Handler;
|
||||||
|
import android.os.Looper;
|
||||||
|
|
||||||
|
public final class ThreadManager {
|
||||||
|
|
||||||
|
// UI线程
|
||||||
|
private static Handler mManinHandler;
|
||||||
|
private static Object mMainHandlerLock = new Object();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 取得UI线程Handler
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public static Handler getMainHandler() {
|
||||||
|
if (mManinHandler == null) {
|
||||||
|
synchronized (mMainHandlerLock) {
|
||||||
|
if (mManinHandler == null) {
|
||||||
|
mManinHandler = new Handler(Looper.getMainLooper());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return mManinHandler;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,123 @@
|
|||||||
|
package com.yoozoo.sharesdk;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by xiangli on 2018/11/29.
|
||||||
|
*/
|
||||||
|
|
||||||
|
public class Utils {
|
||||||
|
|
||||||
|
public static String platName(String platId) {
|
||||||
|
switch (platId) {
|
||||||
|
case "1":
|
||||||
|
return "SinaWeibo";
|
||||||
|
case "2":
|
||||||
|
return "TencentWeibo";
|
||||||
|
case "5":
|
||||||
|
return "Douban";
|
||||||
|
case "6":
|
||||||
|
return "QZone";
|
||||||
|
case "7":
|
||||||
|
return "Renren";
|
||||||
|
case "8":
|
||||||
|
return "KaiXin";
|
||||||
|
case "10":
|
||||||
|
return "Facebook";
|
||||||
|
case "11":
|
||||||
|
return "Twitter";
|
||||||
|
case "12":
|
||||||
|
return "Evernote";
|
||||||
|
case "14":
|
||||||
|
return "GooglePlus";
|
||||||
|
case "15":
|
||||||
|
return "Instagram";
|
||||||
|
case "16":
|
||||||
|
return "LinkedIn";
|
||||||
|
case "17":
|
||||||
|
return "Tumblr";
|
||||||
|
case "18":
|
||||||
|
return "Email";
|
||||||
|
case "19":
|
||||||
|
return "ShortMessage";
|
||||||
|
/* case "20":
|
||||||
|
return "print";
|
||||||
|
case "21":
|
||||||
|
return "copy";*/
|
||||||
|
case "22":
|
||||||
|
return "Wechat"; //"wechatSession";
|
||||||
|
case "23":
|
||||||
|
return "WechatMoments"; //"wechatTimeline"
|
||||||
|
case "24":
|
||||||
|
return "QQ";
|
||||||
|
case "25":
|
||||||
|
return "Instapaper";
|
||||||
|
case "26":
|
||||||
|
return "Pocket";
|
||||||
|
case "27":
|
||||||
|
return "YouDao";
|
||||||
|
case "30":
|
||||||
|
return "Pinterest";
|
||||||
|
case "34":
|
||||||
|
return "Flickr";
|
||||||
|
case "35":
|
||||||
|
return "Dropbox";
|
||||||
|
case "36":
|
||||||
|
return "VKontakte";
|
||||||
|
case "37":
|
||||||
|
return "WechatFavorite";
|
||||||
|
case "38":
|
||||||
|
return "Yixin";
|
||||||
|
case "39":
|
||||||
|
return "YixinMoments";
|
||||||
|
/* case "40":
|
||||||
|
return "yixinFav";*/
|
||||||
|
case "41":
|
||||||
|
return "Mingdao";
|
||||||
|
case "42":
|
||||||
|
return "Line";
|
||||||
|
case "43":
|
||||||
|
return "WhatsApp";
|
||||||
|
case "44":
|
||||||
|
return "KakaoTalk";
|
||||||
|
case "45":
|
||||||
|
return "KakaoStory";
|
||||||
|
case "46":
|
||||||
|
return "FacebookMessenger";
|
||||||
|
case "47":
|
||||||
|
return "Telegram";
|
||||||
|
case "50":
|
||||||
|
return "Alipay";
|
||||||
|
case "51":
|
||||||
|
return "AlipayMoments";
|
||||||
|
case "52":
|
||||||
|
return "Dingding";
|
||||||
|
case "54":
|
||||||
|
return "Meipai";
|
||||||
|
case "55":
|
||||||
|
return "Cmcc";
|
||||||
|
case "56":
|
||||||
|
return "Reddit";
|
||||||
|
case "59":
|
||||||
|
return "Douyin";
|
||||||
|
/* case "994":
|
||||||
|
return "yixinSeries";
|
||||||
|
case "995":
|
||||||
|
return "kakaoSeries";
|
||||||
|
case "997":
|
||||||
|
return "wechatSeries";
|
||||||
|
case "998":
|
||||||
|
return "qqSeries";*/
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initPlat(String platId, String platName) {
|
||||||
|
if (platName != null && platId != null) {
|
||||||
|
HashMap<String, String> platMap = new HashMap<String, String>();
|
||||||
|
platMap.put(platId, platName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,107 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="generator" content="made with love by dartdoc 0.20.2">
|
||||||
|
<meta name="description" content="sharesdk API docs, for the Dart programming language.">
|
||||||
|
<title>sharesdk - Dart API docs</title>
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="http://www.mob.com/product/sharesdk">sharesdk package</a></li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">sharesdk</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5><span class="package-name">sharesdk</span> <span class="package-kind">package</span></h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title">Libraries</li>
|
||||||
|
<li><a href="sharesdk/sharesdk-library.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_interface/sharesdk_interface-library.html">sharesdk_interface</a></li>
|
||||||
|
<li><a href="sharesdk_map/sharesdk_map-library.html">sharesdk_map</a></li>
|
||||||
|
<li><a href="sharesdk_register/sharesdk_register-library.html">sharesdk_register</a></li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<section class="desc markdown">
|
||||||
|
<h1>sharesdk</h1>
|
||||||
|
<p>A flutter plugin for share and auth to 40+ platforms.</p>
|
||||||
|
<h2>Getting Started</h2>
|
||||||
|
<p>For help getting started with Flutter, view our online
|
||||||
|
<a href="https://flutter.io/">documentation</a>.</p>
|
||||||
|
<p>For help on editing plugin code, view the <a href="https://flutter.io/developing-packages/#edit-plugin-package">documentation</a>.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary">
|
||||||
|
<h2>Libraries</h2>
|
||||||
|
<dl>
|
||||||
|
<dt id="sharesdk">
|
||||||
|
<span class="name"><a href="sharesdk/sharesdk-library.html">sharesdk</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
</dd> <dt id="sharesdk_defines">
|
||||||
|
<span class="name"><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
</dd> <dt id="sharesdk_interface">
|
||||||
|
<span class="name"><a href="sharesdk_interface/sharesdk_interface-library.html">sharesdk_interface</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
</dd> <dt id="sharesdk_map">
|
||||||
|
<span class="name"><a href="sharesdk_map/sharesdk_map-library.html">sharesdk_map</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
</dd> <dt id="sharesdk_register">
|
||||||
|
<span class="name"><a href="sharesdk_register/sharesdk_register-library.html">sharesdk_register</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
</dd> </dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,196 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the SSDKContentType class from the sharesdk_defines library, for the Dart programming language.">
|
||||||
|
<title>SSDKContentType class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li class="self-crumb">SSDKContentType class</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">SSDKContentType</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>sharesdk_defines library</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#classes">Classes</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform-class.html">ShareSDKPlatform</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatforms-class.html">ShareSDKPlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#enums">Enums</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#exceptions">Exceptions</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>SSDKContentType class</h1>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<section class="summary offset-anchor" id="constructors">
|
||||||
|
<h2>Constructors</h2>
|
||||||
|
|
||||||
|
<dl class="constructor-summary-list">
|
||||||
|
<dt id="SSDKContentType" class="callable">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentType/SSDKContentType.html">SSDKContentType</a></span><span class="signature">({<span class="parameter" id="-param-value"><span class="type-annotation">int</span> <span class="parameter-name">value</span></span> })</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor" id="instance-properties">
|
||||||
|
<h2>Properties</h2>
|
||||||
|
|
||||||
|
<dl class="properties">
|
||||||
|
<dt id="value" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentType/value.html">value</a></span>
|
||||||
|
<span class="signature">→ int</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="hashCode" class="property inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentType/hashCode.html">hashCode</a></span>
|
||||||
|
<span class="signature">→ int</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
The hash code for this object. <a href="sharesdk_defines/SSDKContentType/hashCode.html">[...]</a>
|
||||||
|
<div class="features">read-only, inherited</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="runtimeType" class="property inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentType/runtimeType.html">runtimeType</a></span>
|
||||||
|
<span class="signature">→ Type</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
A representation of the runtime type of the object.
|
||||||
|
<div class="features">read-only, inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor inherited" id="instance-methods">
|
||||||
|
<h2>Methods</h2>
|
||||||
|
<dl class="callables">
|
||||||
|
<dt id="noSuchMethod" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentType/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation">Invocation</span> <span class="parameter-name">invocation</span></span>)
|
||||||
|
<span class="returntype parameter">→ dynamic</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
Invoked when a non-existent method or property is accessed. <a href="sharesdk_defines/SSDKContentType/noSuchMethod.html">[...]</a>
|
||||||
|
<div class="features">@pragma("vm:entry-point"), inherited</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="toString" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentType/toString.html">toString</a></span><span class="signature">(<wbr>)
|
||||||
|
<span class="returntype parameter">→ String</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
Returns a string representation of this object.
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor inherited" id="operators">
|
||||||
|
<h2>Operators</h2>
|
||||||
|
<dl class="callables">
|
||||||
|
<dt id="operator ==" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentType/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation">dynamic</span> <span class="parameter-name">other</span></span>)
|
||||||
|
<span class="returntype parameter">→ bool</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
The equality operator. <a href="sharesdk_defines/SSDKContentType/operator_equals.html">[...]</a>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentType-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType/SSDKContentType.html">SSDKContentType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKContentType-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType/value.html">value</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentType-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentType-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,101 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the SSDKContentType constructor from the Class SSDKContentType class from the sharesdk_defines library, for the Dart programming language.">
|
||||||
|
<title>SSDKContentType constructor - SSDKContentType class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></li>
|
||||||
|
<li class="self-crumb">SSDKContentType constructor</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">SSDKContentType</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentType class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentType-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType/SSDKContentType.html">SSDKContentType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKContentType-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType/value.html">value</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentType-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentType-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-left-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>SSDKContentType constructor</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
|
||||||
|
<span class="name ">SSDKContentType</span>(<wbr>{<span class="parameter" id="-param-value"><span class="type-annotation">int</span> <span class="parameter-name">value</span></span> })
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">SSDKContentType({this.value}) : super();</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,129 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the hashCode property from the SSDKContentType class, for the Dart programming language.">
|
||||||
|
<title>hashCode property - SSDKContentType class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></li>
|
||||||
|
<li class="self-crumb">hashCode property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">hashCode</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentType class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentType-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType/SSDKContentType.html">SSDKContentType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKContentType-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType/value.html">value</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentType-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentType-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>hashCode property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">int</span>
|
||||||
|
<span class="name ">hashCode</span>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>The hash code for this object.</p>
|
||||||
|
<p>A hash code is a single integer which represents the state of the object
|
||||||
|
that affects <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> comparisons.</p>
|
||||||
|
<p>All objects have hash codes.
|
||||||
|
The default hash code represents only the identity of the object,
|
||||||
|
the same way as the default <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> implementation only considers objects
|
||||||
|
equal if they are identical (see <code>identityHashCode</code>).</p>
|
||||||
|
<p>If <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> is overridden to use the object state instead,
|
||||||
|
the hash code must also be changed to represent that state.</p>
|
||||||
|
<p>Hash codes must be the same for objects that are equal to each other
|
||||||
|
according to <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a>.
|
||||||
|
The hash code of an object should only change if the object changes
|
||||||
|
in a way that affects equality.
|
||||||
|
There are no further requirements for the hash codes.
|
||||||
|
They need not be consistent between executions of the same program
|
||||||
|
and there are no distribution guarantees.</p>
|
||||||
|
<p>Objects that are not equal are allowed to have the same hash code,
|
||||||
|
it is even technically allowed that all instances have the same hash code,
|
||||||
|
but if clashes happen too often, it may reduce the efficiency of hash-based
|
||||||
|
data structures like <code>HashSet</code> or <code>HashMap</code>.</p>
|
||||||
|
<p>If a subclass overrides <a href="sharesdk_register/ShareSDKRegister/hashCode.html">hashCode</a>, it should override the
|
||||||
|
<a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> operator as well to maintain consistency.</p>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external int get hashCode;</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,113 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the noSuchMethod method from the SSDKContentType class, for the Dart programming language.">
|
||||||
|
<title>noSuchMethod method - SSDKContentType class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></li>
|
||||||
|
<li class="self-crumb">noSuchMethod method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">noSuchMethod</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentType class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentType-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType/SSDKContentType.html">SSDKContentType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKContentType-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType/value.html">value</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentType-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentType-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>noSuchMethod method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<div>
|
||||||
|
<ol class="annotation-list">
|
||||||
|
<li>@pragma("vm:entry-point")</li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<span class="returntype">dynamic</span>
|
||||||
|
<span class="name ">noSuchMethod</span>
|
||||||
|
(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation">Invocation</span> <span class="parameter-name">invocation</span></span>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>Invoked when a non-existent method or property is accessed.</p>
|
||||||
|
<p>Classes can override <a href="sharesdk_register/ShareSDKRegister/noSuchMethod.html">noSuchMethod</a> to provide custom behavior.</p>
|
||||||
|
<p>If a value is returned, it becomes the result of the original invocation.</p>
|
||||||
|
<p>The default behavior is to throw a <code>NoSuchMethodError</code>.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">@pragma("vm:entry-point")
|
||||||
|
external dynamic noSuchMethod(Invocation invocation);</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,121 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the operator == method from the SSDKContentType class, for the Dart programming language.">
|
||||||
|
<title>operator == method - SSDKContentType class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></li>
|
||||||
|
<li class="self-crumb">operator == method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">operator ==</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentType class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentType-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType/SSDKContentType.html">SSDKContentType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKContentType-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType/value.html">value</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentType-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentType-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>operator == method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">bool</span>
|
||||||
|
<span class="name ">operator ==</span>
|
||||||
|
(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation">dynamic</span> <span class="parameter-name">other</span></span>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>The equality operator.</p>
|
||||||
|
<p>The default behavior for all <code>Object</code>s is to return true if and
|
||||||
|
only if <code>this</code> and <code>other</code> are the same object.</p>
|
||||||
|
<p>Override this method to specify a different equality relation on
|
||||||
|
a class. The overriding method must still be an equivalence relation.
|
||||||
|
That is, it must be:</p><ul><li>
|
||||||
|
<p>Total: It must return a boolean for all arguments. It should never throw
|
||||||
|
or return <code>null</code>.</p></li><li>
|
||||||
|
<p>Reflexive: For all objects <code>o</code>, <code>o == o</code> must be true.</p></li><li>
|
||||||
|
<p>Symmetric: For all objects <code>o1</code> and <code>o2</code>, <code>o1 == o2</code> and <code>o2 == o1</code> must
|
||||||
|
either both be true, or both be false.</p></li><li>
|
||||||
|
<p>Transitive: For all objects <code>o1</code>, <code>o2</code>, and <code>o3</code>, if <code>o1 == o2</code> and
|
||||||
|
<code>o2 == o3</code> are true, then <code>o1 == o3</code> must be true.</p></li></ul>
|
||||||
|
<p>The method should also be consistent over time,
|
||||||
|
so whether two objects are equal should only change
|
||||||
|
if at least one of the objects was modified.</p>
|
||||||
|
<p>If a subclass overrides the equality operator it should override
|
||||||
|
the <a href="sharesdk_register/ShareSDKRegister/hashCode.html">hashCode</a> method as well to maintain consistency.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external bool operator ==(other);</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,108 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the runtimeType property from the SSDKContentType class, for the Dart programming language.">
|
||||||
|
<title>runtimeType property - SSDKContentType class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></li>
|
||||||
|
<li class="self-crumb">runtimeType property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">runtimeType</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentType class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentType-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType/SSDKContentType.html">SSDKContentType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKContentType-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType/value.html">value</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentType-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentType-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>runtimeType property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">Type</span>
|
||||||
|
<span class="name ">runtimeType</span>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>A representation of the runtime type of the object.</p>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external Type get runtimeType;</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,104 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the toString method from the SSDKContentType class, for the Dart programming language.">
|
||||||
|
<title>toString method - SSDKContentType class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></li>
|
||||||
|
<li class="self-crumb">toString method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">toString</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentType class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentType-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType/SSDKContentType.html">SSDKContentType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKContentType-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType/value.html">value</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentType-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentType-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>toString method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">String</span>
|
||||||
|
<span class="name ">toString</span>
|
||||||
|
(<wbr>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>Returns a string representation of this object.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external String toString();</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,102 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the value property from the SSDKContentType class, for the Dart programming language.">
|
||||||
|
<title>value property - SSDKContentType class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></li>
|
||||||
|
<li class="self-crumb">value property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">value</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentType class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentType-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType/SSDKContentType.html">SSDKContentType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKContentType-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType/value.html">value</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentType-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentType-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentType/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>value property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">int</span>
|
||||||
|
<span class="name ">value</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">final int value
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,275 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the SSDKContentTypes class from the sharesdk_defines library, for the Dart programming language.">
|
||||||
|
<title>SSDKContentTypes class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li class="self-crumb">SSDKContentTypes class</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">SSDKContentTypes</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>sharesdk_defines library</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#classes">Classes</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform-class.html">ShareSDKPlatform</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatforms-class.html">ShareSDKPlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#enums">Enums</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#exceptions">Exceptions</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>SSDKContentTypes class</h1>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<section class="summary offset-anchor" id="constructors">
|
||||||
|
<h2>Constructors</h2>
|
||||||
|
|
||||||
|
<dl class="constructor-summary-list">
|
||||||
|
<dt id="SSDKContentTypes" class="callable">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></span><span class="signature">()</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor inherited" id="instance-properties">
|
||||||
|
<h2>Properties</h2>
|
||||||
|
|
||||||
|
<dl class="properties">
|
||||||
|
<dt id="hashCode" class="property inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></span>
|
||||||
|
<span class="signature">→ int</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
The hash code for this object. <a href="sharesdk_defines/SSDKContentTypes/hashCode.html">[...]</a>
|
||||||
|
<div class="features">read-only, inherited</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="runtimeType" class="property inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></span>
|
||||||
|
<span class="signature">→ Type</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
A representation of the runtime type of the object.
|
||||||
|
<div class="features">read-only, inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor inherited" id="instance-methods">
|
||||||
|
<h2>Methods</h2>
|
||||||
|
<dl class="callables">
|
||||||
|
<dt id="noSuchMethod" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation">Invocation</span> <span class="parameter-name">invocation</span></span>)
|
||||||
|
<span class="returntype parameter">→ dynamic</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
Invoked when a non-existent method or property is accessed. <a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">[...]</a>
|
||||||
|
<div class="features">@pragma("vm:entry-point"), inherited</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="toString" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></span><span class="signature">(<wbr>)
|
||||||
|
<span class="returntype parameter">→ String</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
Returns a string representation of this object.
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor inherited" id="operators">
|
||||||
|
<h2>Operators</h2>
|
||||||
|
<dl class="callables">
|
||||||
|
<dt id="operator ==" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation">dynamic</span> <span class="parameter-name">other</span></span>)
|
||||||
|
<span class="returntype parameter">→ bool</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
The equality operator. <a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">[...]</a>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor" id="static-properties">
|
||||||
|
<h2>Static Properties</h2>
|
||||||
|
|
||||||
|
<dl class="properties">
|
||||||
|
<dt id="app" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">read-only</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="audio" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">read-only</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="auto" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">read-only</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="file" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">read-only</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="image" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">read-only</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="miniProgram" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">read-only</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="text" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">read-only</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="video" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">read-only</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="webpage" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">read-only</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/SSDKContentTypes-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,107 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the SSDKContentTypes constructor from the Class SSDKContentTypes class from the sharesdk_defines library, for the Dart programming language.">
|
||||||
|
<title>SSDKContentTypes constructor - SSDKContentTypes class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
<li class="self-crumb">SSDKContentTypes constructor</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">SSDKContentTypes</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentTypes class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/SSDKContentTypes-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-left-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>SSDKContentTypes constructor</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
|
||||||
|
<span class="name ">SSDKContentTypes</span>(<wbr>)
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the app property from the SSDKContentTypes class, for the Dart programming language.">
|
||||||
|
<title>app property - SSDKContentTypes class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
<li class="self-crumb">app property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">app</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentTypes class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/SSDKContentTypes-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>app property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
<span class="name ">app</span>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static SSDKContentType get app => SSDKContentType(value: 4);</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the audio property from the SSDKContentTypes class, for the Dart programming language.">
|
||||||
|
<title>audio property - SSDKContentTypes class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
<li class="self-crumb">audio property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">audio</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentTypes class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/SSDKContentTypes-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>audio property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
<span class="name ">audio</span>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static SSDKContentType get audio => SSDKContentType(value: 5);</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the auto property from the SSDKContentTypes class, for the Dart programming language.">
|
||||||
|
<title>auto property - SSDKContentTypes class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
<li class="self-crumb">auto property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">auto</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentTypes class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/SSDKContentTypes-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>auto property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
<span class="name ">auto</span>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static SSDKContentType get auto => SSDKContentType(value: 0);</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the file property from the SSDKContentTypes class, for the Dart programming language.">
|
||||||
|
<title>file property - SSDKContentTypes class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
<li class="self-crumb">file property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">file</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentTypes class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/SSDKContentTypes-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>file property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
<span class="name ">file</span>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static SSDKContentType get file => SSDKContentType(value: 7);</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,138 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the hashCode property from the SSDKContentTypes class, for the Dart programming language.">
|
||||||
|
<title>hashCode property - SSDKContentTypes class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
<li class="self-crumb">hashCode property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">hashCode</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentTypes class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/SSDKContentTypes-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>hashCode property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">int</span>
|
||||||
|
<span class="name ">hashCode</span>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>The hash code for this object.</p>
|
||||||
|
<p>A hash code is a single integer which represents the state of the object
|
||||||
|
that affects <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> comparisons.</p>
|
||||||
|
<p>All objects have hash codes.
|
||||||
|
The default hash code represents only the identity of the object,
|
||||||
|
the same way as the default <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> implementation only considers objects
|
||||||
|
equal if they are identical (see <code>identityHashCode</code>).</p>
|
||||||
|
<p>If <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> is overridden to use the object state instead,
|
||||||
|
the hash code must also be changed to represent that state.</p>
|
||||||
|
<p>Hash codes must be the same for objects that are equal to each other
|
||||||
|
according to <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a>.
|
||||||
|
The hash code of an object should only change if the object changes
|
||||||
|
in a way that affects equality.
|
||||||
|
There are no further requirements for the hash codes.
|
||||||
|
They need not be consistent between executions of the same program
|
||||||
|
and there are no distribution guarantees.</p>
|
||||||
|
<p>Objects that are not equal are allowed to have the same hash code,
|
||||||
|
it is even technically allowed that all instances have the same hash code,
|
||||||
|
but if clashes happen too often, it may reduce the efficiency of hash-based
|
||||||
|
data structures like <code>HashSet</code> or <code>HashMap</code>.</p>
|
||||||
|
<p>If a subclass overrides <a href="sharesdk_register/ShareSDKRegister/hashCode.html">hashCode</a>, it should override the
|
||||||
|
<a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> operator as well to maintain consistency.</p>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external int get hashCode;</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the image property from the SSDKContentTypes class, for the Dart programming language.">
|
||||||
|
<title>image property - SSDKContentTypes class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
<li class="self-crumb">image property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">image</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentTypes class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/SSDKContentTypes-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>image property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
<span class="name ">image</span>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static SSDKContentType get image => SSDKContentType(value: 2);</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the miniProgram property from the SSDKContentTypes class, for the Dart programming language.">
|
||||||
|
<title>miniProgram property - SSDKContentTypes class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
<li class="self-crumb">miniProgram property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">miniProgram</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentTypes class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/SSDKContentTypes-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>miniProgram property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
<span class="name ">miniProgram</span>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static SSDKContentType get miniProgram => SSDKContentType(value: 10);</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,122 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the noSuchMethod method from the SSDKContentTypes class, for the Dart programming language.">
|
||||||
|
<title>noSuchMethod method - SSDKContentTypes class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
<li class="self-crumb">noSuchMethod method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">noSuchMethod</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentTypes class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/SSDKContentTypes-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>noSuchMethod method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<div>
|
||||||
|
<ol class="annotation-list">
|
||||||
|
<li>@pragma("vm:entry-point")</li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<span class="returntype">dynamic</span>
|
||||||
|
<span class="name ">noSuchMethod</span>
|
||||||
|
(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation">Invocation</span> <span class="parameter-name">invocation</span></span>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>Invoked when a non-existent method or property is accessed.</p>
|
||||||
|
<p>Classes can override <a href="sharesdk_register/ShareSDKRegister/noSuchMethod.html">noSuchMethod</a> to provide custom behavior.</p>
|
||||||
|
<p>If a value is returned, it becomes the result of the original invocation.</p>
|
||||||
|
<p>The default behavior is to throw a <code>NoSuchMethodError</code>.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">@pragma("vm:entry-point")
|
||||||
|
external dynamic noSuchMethod(Invocation invocation);</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,130 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the operator == method from the SSDKContentTypes class, for the Dart programming language.">
|
||||||
|
<title>operator == method - SSDKContentTypes class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
<li class="self-crumb">operator == method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">operator ==</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentTypes class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/SSDKContentTypes-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>operator == method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">bool</span>
|
||||||
|
<span class="name ">operator ==</span>
|
||||||
|
(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation">dynamic</span> <span class="parameter-name">other</span></span>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>The equality operator.</p>
|
||||||
|
<p>The default behavior for all <code>Object</code>s is to return true if and
|
||||||
|
only if <code>this</code> and <code>other</code> are the same object.</p>
|
||||||
|
<p>Override this method to specify a different equality relation on
|
||||||
|
a class. The overriding method must still be an equivalence relation.
|
||||||
|
That is, it must be:</p><ul><li>
|
||||||
|
<p>Total: It must return a boolean for all arguments. It should never throw
|
||||||
|
or return <code>null</code>.</p></li><li>
|
||||||
|
<p>Reflexive: For all objects <code>o</code>, <code>o == o</code> must be true.</p></li><li>
|
||||||
|
<p>Symmetric: For all objects <code>o1</code> and <code>o2</code>, <code>o1 == o2</code> and <code>o2 == o1</code> must
|
||||||
|
either both be true, or both be false.</p></li><li>
|
||||||
|
<p>Transitive: For all objects <code>o1</code>, <code>o2</code>, and <code>o3</code>, if <code>o1 == o2</code> and
|
||||||
|
<code>o2 == o3</code> are true, then <code>o1 == o3</code> must be true.</p></li></ul>
|
||||||
|
<p>The method should also be consistent over time,
|
||||||
|
so whether two objects are equal should only change
|
||||||
|
if at least one of the objects was modified.</p>
|
||||||
|
<p>If a subclass overrides the equality operator it should override
|
||||||
|
the <a href="sharesdk_register/ShareSDKRegister/hashCode.html">hashCode</a> method as well to maintain consistency.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external bool operator ==(other);</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,117 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the runtimeType property from the SSDKContentTypes class, for the Dart programming language.">
|
||||||
|
<title>runtimeType property - SSDKContentTypes class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
<li class="self-crumb">runtimeType property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">runtimeType</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentTypes class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/SSDKContentTypes-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>runtimeType property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">Type</span>
|
||||||
|
<span class="name ">runtimeType</span>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>A representation of the runtime type of the object.</p>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external Type get runtimeType;</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the text property from the SSDKContentTypes class, for the Dart programming language.">
|
||||||
|
<title>text property - SSDKContentTypes class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
<li class="self-crumb">text property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">text</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentTypes class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/SSDKContentTypes-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>text property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
<span class="name ">text</span>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static SSDKContentType get text => SSDKContentType(value: 1);</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,113 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the toString method from the SSDKContentTypes class, for the Dart programming language.">
|
||||||
|
<title>toString method - SSDKContentTypes class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
<li class="self-crumb">toString method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">toString</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentTypes class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/SSDKContentTypes-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>toString method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">String</span>
|
||||||
|
<span class="name ">toString</span>
|
||||||
|
(<wbr>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>Returns a string representation of this object.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external String toString();</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the video property from the SSDKContentTypes class, for the Dart programming language.">
|
||||||
|
<title>video property - SSDKContentTypes class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
<li class="self-crumb">video property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">video</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentTypes class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/SSDKContentTypes-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>video property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
<span class="name ">video</span>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static SSDKContentType get video => SSDKContentType(value: 6);</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the webpage property from the SSDKContentTypes class, for the Dart programming language.">
|
||||||
|
<title>webpage property - SSDKContentTypes class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
<li class="self-crumb">webpage property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">webpage</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKContentTypes class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/SSDKContentTypes.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/SSDKContentTypes-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKContentTypes-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKContentTypes/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKContentTypes-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/app.html">app</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/audio.html">audio</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/auto.html">auto</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/file.html">file</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/image.html">image</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/miniProgram.html">miniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/text.html">text</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/video.html">video</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes/webpage.html">webpage</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>webpage property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></span>
|
||||||
|
<span class="name ">webpage</span>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static SSDKContentType get webpage => SSDKContentType(value: 3);</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,237 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the SSDKError class from the sharesdk_defines library, for the Dart programming language.">
|
||||||
|
<title>SSDKError class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li class="self-crumb">SSDKError class</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">SSDKError</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>sharesdk_defines library</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#classes">Classes</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform-class.html">ShareSDKPlatform</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatforms-class.html">ShareSDKPlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#enums">Enums</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#exceptions">Exceptions</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>SSDKError class</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<dl class="dl-horizontal">
|
||||||
|
<dt>Inheritance</dt>
|
||||||
|
<dd><ul class="gt-separated dark clazz-relationships">
|
||||||
|
<li>Object</li>
|
||||||
|
<li>Error</li>
|
||||||
|
<li>SSDKError</li>
|
||||||
|
</ul></dd>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor" id="constructors">
|
||||||
|
<h2>Constructors</h2>
|
||||||
|
|
||||||
|
<dl class="constructor-summary-list">
|
||||||
|
<dt id="SSDKError" class="callable">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKError/SSDKError.html">SSDKError</a></span><span class="signature">({<span class="parameter" id="-param-rawData"><span class="type-annotation">Map</span> <span class="parameter-name">rawData</span></span> })</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor" id="instance-properties">
|
||||||
|
<h2>Properties</h2>
|
||||||
|
|
||||||
|
<dl class="properties">
|
||||||
|
<dt id="code" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKError/code.html">code</a></span>
|
||||||
|
<span class="signature">→ int</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="rawData" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKError/rawData.html">rawData</a></span>
|
||||||
|
<span class="signature">→ Map</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="userInfo" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKError/userInfo.html">userInfo</a></span>
|
||||||
|
<span class="signature">→ Map</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="hashCode" class="property inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKError/hashCode.html">hashCode</a></span>
|
||||||
|
<span class="signature">→ int</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
The hash code for this object. <a href="sharesdk_defines/SSDKError/hashCode.html">[...]</a>
|
||||||
|
<div class="features">read-only, inherited</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="runtimeType" class="property inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKError/runtimeType.html">runtimeType</a></span>
|
||||||
|
<span class="signature">→ Type</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
A representation of the runtime type of the object.
|
||||||
|
<div class="features">read-only, inherited</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="stackTrace" class="property inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKError/stackTrace.html">stackTrace</a></span>
|
||||||
|
<span class="signature">→ StackTrace</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
|
||||||
|
<div class="features">read-only, inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor inherited" id="instance-methods">
|
||||||
|
<h2>Methods</h2>
|
||||||
|
<dl class="callables">
|
||||||
|
<dt id="noSuchMethod" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKError/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation">Invocation</span> <span class="parameter-name">invocation</span></span>)
|
||||||
|
<span class="returntype parameter">→ dynamic</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
Invoked when a non-existent method or property is accessed. <a href="sharesdk_defines/SSDKError/noSuchMethod.html">[...]</a>
|
||||||
|
<div class="features">@pragma("vm:entry-point"), inherited</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="toString" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKError/toString.html">toString</a></span><span class="signature">(<wbr>)
|
||||||
|
<span class="returntype parameter">→ String</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
Returns a string representation of this object.
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor inherited" id="operators">
|
||||||
|
<h2>Operators</h2>
|
||||||
|
<dl class="callables">
|
||||||
|
<dt id="operator ==" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKError/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation">dynamic</span> <span class="parameter-name">other</span></span>)
|
||||||
|
<span class="returntype parameter">→ bool</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
The equality operator. <a href="sharesdk_defines/SSDKError/operator_equals.html">[...]</a>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKError-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/SSDKError.html">SSDKError</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKError-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/code.html">code</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/rawData.html">rawData</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/userInfo.html">userInfo</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/runtimeType.html">runtimeType</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/stackTrace.html">stackTrace</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,107 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the SSDKError constructor from the Class SSDKError class from the sharesdk_defines library, for the Dart programming language.">
|
||||||
|
<title>SSDKError constructor - SSDKError class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
<li class="self-crumb">SSDKError constructor</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">SSDKError</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKError class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKError-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/SSDKError.html">SSDKError</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKError-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/code.html">code</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/rawData.html">rawData</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/userInfo.html">userInfo</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/runtimeType.html">runtimeType</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/stackTrace.html">stackTrace</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-left-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>SSDKError constructor</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
|
||||||
|
<span class="name ">SSDKError</span>(<wbr>{<span class="parameter" id="-param-rawData"><span class="type-annotation">Map</span> <span class="parameter-name">rawData</span></span> })
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">SSDKError({this.rawData})
|
||||||
|
: code = rawData != null ? rawData["code"] : 0,
|
||||||
|
userInfo = rawData != null ? rawData["userInfo"] : {},
|
||||||
|
super();</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,105 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the code property from the SSDKError class, for the Dart programming language.">
|
||||||
|
<title>code property - SSDKError class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
<li class="self-crumb">code property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">code</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKError class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKError-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/SSDKError.html">SSDKError</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKError-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/code.html">code</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/rawData.html">rawData</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/userInfo.html">userInfo</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/runtimeType.html">runtimeType</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/stackTrace.html">stackTrace</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>code property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">int</span>
|
||||||
|
<span class="name ">code</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">final int code
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,132 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the hashCode property from the SSDKError class, for the Dart programming language.">
|
||||||
|
<title>hashCode property - SSDKError class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
<li class="self-crumb">hashCode property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">hashCode</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKError class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKError-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/SSDKError.html">SSDKError</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKError-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/code.html">code</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/rawData.html">rawData</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/userInfo.html">userInfo</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/runtimeType.html">runtimeType</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/stackTrace.html">stackTrace</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>hashCode property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">int</span>
|
||||||
|
<span class="name ">hashCode</span>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>The hash code for this object.</p>
|
||||||
|
<p>A hash code is a single integer which represents the state of the object
|
||||||
|
that affects <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> comparisons.</p>
|
||||||
|
<p>All objects have hash codes.
|
||||||
|
The default hash code represents only the identity of the object,
|
||||||
|
the same way as the default <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> implementation only considers objects
|
||||||
|
equal if they are identical (see <code>identityHashCode</code>).</p>
|
||||||
|
<p>If <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> is overridden to use the object state instead,
|
||||||
|
the hash code must also be changed to represent that state.</p>
|
||||||
|
<p>Hash codes must be the same for objects that are equal to each other
|
||||||
|
according to <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a>.
|
||||||
|
The hash code of an object should only change if the object changes
|
||||||
|
in a way that affects equality.
|
||||||
|
There are no further requirements for the hash codes.
|
||||||
|
They need not be consistent between executions of the same program
|
||||||
|
and there are no distribution guarantees.</p>
|
||||||
|
<p>Objects that are not equal are allowed to have the same hash code,
|
||||||
|
it is even technically allowed that all instances have the same hash code,
|
||||||
|
but if clashes happen too often, it may reduce the efficiency of hash-based
|
||||||
|
data structures like <code>HashSet</code> or <code>HashMap</code>.</p>
|
||||||
|
<p>If a subclass overrides <a href="sharesdk_register/ShareSDKRegister/hashCode.html">hashCode</a>, it should override the
|
||||||
|
<a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> operator as well to maintain consistency.</p>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external int get hashCode;</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,116 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the noSuchMethod method from the SSDKError class, for the Dart programming language.">
|
||||||
|
<title>noSuchMethod method - SSDKError class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
<li class="self-crumb">noSuchMethod method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">noSuchMethod</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKError class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKError-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/SSDKError.html">SSDKError</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKError-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/code.html">code</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/rawData.html">rawData</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/userInfo.html">userInfo</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/runtimeType.html">runtimeType</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/stackTrace.html">stackTrace</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>noSuchMethod method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<div>
|
||||||
|
<ol class="annotation-list">
|
||||||
|
<li>@pragma("vm:entry-point")</li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<span class="returntype">dynamic</span>
|
||||||
|
<span class="name ">noSuchMethod</span>
|
||||||
|
(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation">Invocation</span> <span class="parameter-name">invocation</span></span>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>Invoked when a non-existent method or property is accessed.</p>
|
||||||
|
<p>Classes can override <a href="sharesdk_register/ShareSDKRegister/noSuchMethod.html">noSuchMethod</a> to provide custom behavior.</p>
|
||||||
|
<p>If a value is returned, it becomes the result of the original invocation.</p>
|
||||||
|
<p>The default behavior is to throw a <code>NoSuchMethodError</code>.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">@pragma("vm:entry-point")
|
||||||
|
external dynamic noSuchMethod(Invocation invocation);</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,124 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the operator == method from the SSDKError class, for the Dart programming language.">
|
||||||
|
<title>operator == method - SSDKError class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
<li class="self-crumb">operator == method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">operator ==</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKError class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKError-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/SSDKError.html">SSDKError</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKError-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/code.html">code</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/rawData.html">rawData</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/userInfo.html">userInfo</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/runtimeType.html">runtimeType</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/stackTrace.html">stackTrace</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>operator == method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">bool</span>
|
||||||
|
<span class="name ">operator ==</span>
|
||||||
|
(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation">dynamic</span> <span class="parameter-name">other</span></span>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>The equality operator.</p>
|
||||||
|
<p>The default behavior for all <code>Object</code>s is to return true if and
|
||||||
|
only if <code>this</code> and <code>other</code> are the same object.</p>
|
||||||
|
<p>Override this method to specify a different equality relation on
|
||||||
|
a class. The overriding method must still be an equivalence relation.
|
||||||
|
That is, it must be:</p><ul><li>
|
||||||
|
<p>Total: It must return a boolean for all arguments. It should never throw
|
||||||
|
or return <code>null</code>.</p></li><li>
|
||||||
|
<p>Reflexive: For all objects <code>o</code>, <code>o == o</code> must be true.</p></li><li>
|
||||||
|
<p>Symmetric: For all objects <code>o1</code> and <code>o2</code>, <code>o1 == o2</code> and <code>o2 == o1</code> must
|
||||||
|
either both be true, or both be false.</p></li><li>
|
||||||
|
<p>Transitive: For all objects <code>o1</code>, <code>o2</code>, and <code>o3</code>, if <code>o1 == o2</code> and
|
||||||
|
<code>o2 == o3</code> are true, then <code>o1 == o3</code> must be true.</p></li></ul>
|
||||||
|
<p>The method should also be consistent over time,
|
||||||
|
so whether two objects are equal should only change
|
||||||
|
if at least one of the objects was modified.</p>
|
||||||
|
<p>If a subclass overrides the equality operator it should override
|
||||||
|
the <a href="sharesdk_register/ShareSDKRegister/hashCode.html">hashCode</a> method as well to maintain consistency.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external bool operator ==(other);</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,105 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the rawData property from the SSDKError class, for the Dart programming language.">
|
||||||
|
<title>rawData property - SSDKError class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
<li class="self-crumb">rawData property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">rawData</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKError class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKError-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/SSDKError.html">SSDKError</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKError-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/code.html">code</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/rawData.html">rawData</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/userInfo.html">userInfo</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/runtimeType.html">runtimeType</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/stackTrace.html">stackTrace</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>rawData property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">Map</span>
|
||||||
|
<span class="name ">rawData</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">final Map rawData
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,111 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the runtimeType property from the SSDKError class, for the Dart programming language.">
|
||||||
|
<title>runtimeType property - SSDKError class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
<li class="self-crumb">runtimeType property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">runtimeType</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKError class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKError-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/SSDKError.html">SSDKError</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKError-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/code.html">code</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/rawData.html">rawData</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/userInfo.html">userInfo</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/runtimeType.html">runtimeType</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/stackTrace.html">stackTrace</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>runtimeType property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">Type</span>
|
||||||
|
<span class="name ">runtimeType</span>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>A representation of the runtime type of the object.</p>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external Type get runtimeType;</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,108 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the stackTrace property from the SSDKError class, for the Dart programming language.">
|
||||||
|
<title>stackTrace property - SSDKError class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
<li class="self-crumb">stackTrace property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">stackTrace</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKError class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKError-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/SSDKError.html">SSDKError</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKError-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/code.html">code</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/rawData.html">rawData</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/userInfo.html">userInfo</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/runtimeType.html">runtimeType</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/stackTrace.html">stackTrace</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>stackTrace property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">StackTrace</span>
|
||||||
|
<span class="name ">stackTrace</span>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external StackTrace get stackTrace;</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,107 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the toString method from the SSDKError class, for the Dart programming language.">
|
||||||
|
<title>toString method - SSDKError class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
<li class="self-crumb">toString method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">toString</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKError class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKError-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/SSDKError.html">SSDKError</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKError-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/code.html">code</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/rawData.html">rawData</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/userInfo.html">userInfo</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/runtimeType.html">runtimeType</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/stackTrace.html">stackTrace</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>toString method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">String</span>
|
||||||
|
<span class="name ">toString</span>
|
||||||
|
(<wbr>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>Returns a string representation of this object.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external String toString();</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,105 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the userInfo property from the SSDKError class, for the Dart programming language.">
|
||||||
|
<title>userInfo property - SSDKError class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
<li class="self-crumb">userInfo property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">userInfo</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKError class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKError-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/SSDKError.html">SSDKError</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKError-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/code.html">code</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/rawData.html">rawData</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError/userInfo.html">userInfo</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/runtimeType.html">runtimeType</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/stackTrace.html">stackTrace</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKError-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKError/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>userInfo property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">Map</span>
|
||||||
|
<span class="name ">userInfo</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">final Map userInfo
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,249 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the SSDKResponseState enum from the sharesdk_defines library, for the Dart programming language.">
|
||||||
|
<title>SSDKResponseState enum - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li class="self-crumb">SSDKResponseState enum</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">SSDKResponseState</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>sharesdk_defines library</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#classes">Classes</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform-class.html">ShareSDKPlatform</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatforms-class.html">ShareSDKPlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#enums">Enums</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#exceptions">Exceptions</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>SSDKResponseState enum</h1>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<section class="summary offset-anchor" id="constants">
|
||||||
|
<h2>Constants</h2>
|
||||||
|
|
||||||
|
<dl class="properties">
|
||||||
|
<dt id="Cancel" class="constant">
|
||||||
|
<span class="name ">Cancel</span>
|
||||||
|
<span class="signature">→ const <a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<span class="signature"><code>const SSDKResponseState(2)</code></span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="Fail" class="constant">
|
||||||
|
<span class="name ">Fail</span>
|
||||||
|
<span class="signature">→ const <a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<span class="signature"><code>const SSDKResponseState(1)</code></span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="Success" class="constant">
|
||||||
|
<span class="name ">Success</span>
|
||||||
|
<span class="signature">→ const <a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<span class="signature"><code>const SSDKResponseState(0)</code></span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="Unknown" class="constant">
|
||||||
|
<span class="name ">Unknown</span>
|
||||||
|
<span class="signature">→ const <a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<span class="signature"><code>const SSDKResponseState(3)</code></span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="values" class="constant">
|
||||||
|
<span class="name ">values</span>
|
||||||
|
<span class="signature">→ const List<span class="signature"><<wbr><span class="type-parameter"><a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></span>></span></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>A constant List of the values in this enum, in order of their declaration.</p>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<span class="signature"><code>const List<<wbr><span class="type-parameter">SSDKResponseState</span>></code></span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="summary offset-anchor" id="instance-properties">
|
||||||
|
<h2>Properties</h2>
|
||||||
|
|
||||||
|
<dl class="properties">
|
||||||
|
<dt id="index" class="property">
|
||||||
|
<span class="name">index</span>
|
||||||
|
<span class="signature">→ int</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>The integer index of this enum.</p>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="hashCode" class="property inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKResponseState/hashCode.html">hashCode</a></span>
|
||||||
|
<span class="signature">→ int</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
The hash code for this object. <a href="sharesdk_defines/SSDKResponseState/hashCode.html">[...]</a>
|
||||||
|
<div class="features">read-only, inherited</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="runtimeType" class="property inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKResponseState/runtimeType.html">runtimeType</a></span>
|
||||||
|
<span class="signature">→ Type</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
A representation of the runtime type of the object.
|
||||||
|
<div class="features">read-only, inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor" id="instance-methods">
|
||||||
|
<h2>Methods</h2>
|
||||||
|
<dl class="callables">
|
||||||
|
<dt id="toString" class="callable">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKResponseState/toString.html">toString</a></span><span class="signature">(<wbr>)
|
||||||
|
<span class="returntype parameter">→ String</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
Returns a string representation of this object.
|
||||||
|
|
||||||
|
</dd>
|
||||||
|
<dt id="noSuchMethod" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKResponseState/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation">Invocation</span> <span class="parameter-name">invocation</span></span>)
|
||||||
|
<span class="returntype parameter">→ dynamic</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
Invoked when a non-existent method or property is accessed. <a href="sharesdk_defines/SSDKResponseState/noSuchMethod.html">[...]</a>
|
||||||
|
<div class="features">@pragma("vm:entry-point"), inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor inherited" id="operators">
|
||||||
|
<h2>Operators</h2>
|
||||||
|
<dl class="callables">
|
||||||
|
<dt id="operator ==" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/SSDKResponseState/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation">dynamic</span> <span class="parameter-name">other</span></span>)
|
||||||
|
<span class="returntype parameter">→ bool</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
The equality operator. <a href="sharesdk_defines/SSDKResponseState/operator_equals.html">[...]</a>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKResponseState-class.html#constants">Constants</a></li>
|
||||||
|
<li>Cancel</li>
|
||||||
|
<li>Fail</li>
|
||||||
|
<li>Success</li>
|
||||||
|
<li>Unknown</li>
|
||||||
|
<li>values</li>
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKResponseState-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li>index</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKResponseState-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState/toString.html">toString</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKResponseState-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,133 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the hashCode property from the SSDKResponseState class, for the Dart programming language.">
|
||||||
|
<title>hashCode property - SSDKResponseState class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></li>
|
||||||
|
<li class="self-crumb">hashCode property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">hashCode</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKResponseState enum</h5>
|
||||||
|
<ol>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKResponseState-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li>index</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKResponseState-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState/toString.html">toString</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKResponseState-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKResponseState-class.html#constants">Constants</a></li>
|
||||||
|
<li>Cancel</li>
|
||||||
|
<li>Fail</li>
|
||||||
|
<li>Success</li>
|
||||||
|
<li>Unknown</li>
|
||||||
|
<li>values</li>
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>hashCode property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">int</span>
|
||||||
|
<span class="name ">hashCode</span>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>The hash code for this object.</p>
|
||||||
|
<p>A hash code is a single integer which represents the state of the object
|
||||||
|
that affects <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> comparisons.</p>
|
||||||
|
<p>All objects have hash codes.
|
||||||
|
The default hash code represents only the identity of the object,
|
||||||
|
the same way as the default <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> implementation only considers objects
|
||||||
|
equal if they are identical (see <code>identityHashCode</code>).</p>
|
||||||
|
<p>If <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> is overridden to use the object state instead,
|
||||||
|
the hash code must also be changed to represent that state.</p>
|
||||||
|
<p>Hash codes must be the same for objects that are equal to each other
|
||||||
|
according to <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a>.
|
||||||
|
The hash code of an object should only change if the object changes
|
||||||
|
in a way that affects equality.
|
||||||
|
There are no further requirements for the hash codes.
|
||||||
|
They need not be consistent between executions of the same program
|
||||||
|
and there are no distribution guarantees.</p>
|
||||||
|
<p>Objects that are not equal are allowed to have the same hash code,
|
||||||
|
it is even technically allowed that all instances have the same hash code,
|
||||||
|
but if clashes happen too often, it may reduce the efficiency of hash-based
|
||||||
|
data structures like <code>HashSet</code> or <code>HashMap</code>.</p>
|
||||||
|
<p>If a subclass overrides <a href="sharesdk_register/ShareSDKRegister/hashCode.html">hashCode</a>, it should override the
|
||||||
|
<a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> operator as well to maintain consistency.</p>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external int get hashCode;</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,117 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the noSuchMethod method from the SSDKResponseState class, for the Dart programming language.">
|
||||||
|
<title>noSuchMethod method - SSDKResponseState class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></li>
|
||||||
|
<li class="self-crumb">noSuchMethod method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">noSuchMethod</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKResponseState enum</h5>
|
||||||
|
<ol>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKResponseState-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li>index</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKResponseState-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState/toString.html">toString</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKResponseState-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKResponseState-class.html#constants">Constants</a></li>
|
||||||
|
<li>Cancel</li>
|
||||||
|
<li>Fail</li>
|
||||||
|
<li>Success</li>
|
||||||
|
<li>Unknown</li>
|
||||||
|
<li>values</li>
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>noSuchMethod method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<div>
|
||||||
|
<ol class="annotation-list">
|
||||||
|
<li>@pragma("vm:entry-point")</li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<span class="returntype">dynamic</span>
|
||||||
|
<span class="name ">noSuchMethod</span>
|
||||||
|
(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation">Invocation</span> <span class="parameter-name">invocation</span></span>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>Invoked when a non-existent method or property is accessed.</p>
|
||||||
|
<p>Classes can override <a href="sharesdk_register/ShareSDKRegister/noSuchMethod.html">noSuchMethod</a> to provide custom behavior.</p>
|
||||||
|
<p>If a value is returned, it becomes the result of the original invocation.</p>
|
||||||
|
<p>The default behavior is to throw a <code>NoSuchMethodError</code>.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">@pragma("vm:entry-point")
|
||||||
|
external dynamic noSuchMethod(Invocation invocation);</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,125 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the operator == method from the SSDKResponseState class, for the Dart programming language.">
|
||||||
|
<title>operator == method - SSDKResponseState class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></li>
|
||||||
|
<li class="self-crumb">operator == method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">operator ==</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKResponseState enum</h5>
|
||||||
|
<ol>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKResponseState-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li>index</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKResponseState-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState/toString.html">toString</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKResponseState-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKResponseState-class.html#constants">Constants</a></li>
|
||||||
|
<li>Cancel</li>
|
||||||
|
<li>Fail</li>
|
||||||
|
<li>Success</li>
|
||||||
|
<li>Unknown</li>
|
||||||
|
<li>values</li>
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>operator == method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">bool</span>
|
||||||
|
<span class="name ">operator ==</span>
|
||||||
|
(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation">dynamic</span> <span class="parameter-name">other</span></span>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>The equality operator.</p>
|
||||||
|
<p>The default behavior for all <code>Object</code>s is to return true if and
|
||||||
|
only if <code>this</code> and <code>other</code> are the same object.</p>
|
||||||
|
<p>Override this method to specify a different equality relation on
|
||||||
|
a class. The overriding method must still be an equivalence relation.
|
||||||
|
That is, it must be:</p><ul><li>
|
||||||
|
<p>Total: It must return a boolean for all arguments. It should never throw
|
||||||
|
or return <code>null</code>.</p></li><li>
|
||||||
|
<p>Reflexive: For all objects <code>o</code>, <code>o == o</code> must be true.</p></li><li>
|
||||||
|
<p>Symmetric: For all objects <code>o1</code> and <code>o2</code>, <code>o1 == o2</code> and <code>o2 == o1</code> must
|
||||||
|
either both be true, or both be false.</p></li><li>
|
||||||
|
<p>Transitive: For all objects <code>o1</code>, <code>o2</code>, and <code>o3</code>, if <code>o1 == o2</code> and
|
||||||
|
<code>o2 == o3</code> are true, then <code>o1 == o3</code> must be true.</p></li></ul>
|
||||||
|
<p>The method should also be consistent over time,
|
||||||
|
so whether two objects are equal should only change
|
||||||
|
if at least one of the objects was modified.</p>
|
||||||
|
<p>If a subclass overrides the equality operator it should override
|
||||||
|
the <a href="sharesdk_register/ShareSDKRegister/hashCode.html">hashCode</a> method as well to maintain consistency.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external bool operator ==(other);</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,112 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the runtimeType property from the SSDKResponseState class, for the Dart programming language.">
|
||||||
|
<title>runtimeType property - SSDKResponseState class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></li>
|
||||||
|
<li class="self-crumb">runtimeType property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">runtimeType</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKResponseState enum</h5>
|
||||||
|
<ol>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKResponseState-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li>index</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKResponseState-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState/toString.html">toString</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKResponseState-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKResponseState-class.html#constants">Constants</a></li>
|
||||||
|
<li>Cancel</li>
|
||||||
|
<li>Fail</li>
|
||||||
|
<li>Success</li>
|
||||||
|
<li>Unknown</li>
|
||||||
|
<li>values</li>
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>runtimeType property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">Type</span>
|
||||||
|
<span class="name ">runtimeType</span>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>A representation of the runtime type of the object.</p>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external Type get runtimeType;</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,105 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the toString method from the SSDKResponseState class, for the Dart programming language.">
|
||||||
|
<title>toString method - SSDKResponseState class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></li>
|
||||||
|
<li class="self-crumb">toString method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">toString</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>SSDKResponseState enum</h5>
|
||||||
|
<ol>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/SSDKResponseState-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li>index</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKResponseState-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState/toString.html">toString</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/SSDKResponseState-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/SSDKResponseState/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/SSDKResponseState-class.html#constants">Constants</a></li>
|
||||||
|
<li>Cancel</li>
|
||||||
|
<li>Fail</li>
|
||||||
|
<li>Success</li>
|
||||||
|
<li>Unknown</li>
|
||||||
|
<li>values</li>
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>toString method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">String</span>
|
||||||
|
<span class="name ">toString</span>
|
||||||
|
(<wbr>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>Returns a string representation of this object.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,205 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the ShareSDKMethod class from the sharesdk_defines library, for the Dart programming language.">
|
||||||
|
<title>ShareSDKMethod class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li class="self-crumb">ShareSDKMethod class</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">ShareSDKMethod</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>sharesdk_defines library</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#classes">Classes</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform-class.html">ShareSDKPlatform</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatforms-class.html">ShareSDKPlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#enums">Enums</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#exceptions">Exceptions</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>ShareSDKMethod class</h1>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<section class="summary offset-anchor" id="constructors">
|
||||||
|
<h2>Constructors</h2>
|
||||||
|
|
||||||
|
<dl class="constructor-summary-list">
|
||||||
|
<dt id="ShareSDKMethod" class="callable">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethod/ShareSDKMethod.html">ShareSDKMethod</a></span><span class="signature">({<span class="parameter" id="-param-name"><span>@required</span> <span class="type-annotation">String</span> <span class="parameter-name">name</span>, </span> <span class="parameter" id="-param-id"><span>@required</span> <span class="type-annotation">int</span> <span class="parameter-name">id</span></span> })</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor" id="instance-properties">
|
||||||
|
<h2>Properties</h2>
|
||||||
|
|
||||||
|
<dl class="properties">
|
||||||
|
<dt id="id" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethod/id.html">id</a></span>
|
||||||
|
<span class="signature">→ int</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="name" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethod/name.html">name</a></span>
|
||||||
|
<span class="signature">→ String</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="hashCode" class="property inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethod/hashCode.html">hashCode</a></span>
|
||||||
|
<span class="signature">→ int</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
The hash code for this object. <a href="sharesdk_defines/ShareSDKMethod/hashCode.html">[...]</a>
|
||||||
|
<div class="features">read-only, inherited</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="runtimeType" class="property inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethod/runtimeType.html">runtimeType</a></span>
|
||||||
|
<span class="signature">→ Type</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
A representation of the runtime type of the object.
|
||||||
|
<div class="features">read-only, inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor inherited" id="instance-methods">
|
||||||
|
<h2>Methods</h2>
|
||||||
|
<dl class="callables">
|
||||||
|
<dt id="noSuchMethod" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethod/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation">Invocation</span> <span class="parameter-name">invocation</span></span>)
|
||||||
|
<span class="returntype parameter">→ dynamic</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
Invoked when a non-existent method or property is accessed. <a href="sharesdk_defines/ShareSDKMethod/noSuchMethod.html">[...]</a>
|
||||||
|
<div class="features">@pragma("vm:entry-point"), inherited</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="toString" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethod/toString.html">toString</a></span><span class="signature">(<wbr>)
|
||||||
|
<span class="returntype parameter">→ String</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
Returns a string representation of this object.
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor inherited" id="operators">
|
||||||
|
<h2>Operators</h2>
|
||||||
|
<dl class="callables">
|
||||||
|
<dt id="operator ==" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethod/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation">dynamic</span> <span class="parameter-name">other</span></span>)
|
||||||
|
<span class="returntype parameter">→ bool</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
The equality operator. <a href="sharesdk_defines/ShareSDKMethod/operator_equals.html">[...]</a>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethod-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/ShareSDKMethod.html">ShareSDKMethod</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethod-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/id.html">id</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/name.html">name</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,104 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the ShareSDKMethod constructor from the Class ShareSDKMethod class from the sharesdk_defines library, for the Dart programming language.">
|
||||||
|
<title>ShareSDKMethod constructor - ShareSDKMethod class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></li>
|
||||||
|
<li class="self-crumb">ShareSDKMethod constructor</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">ShareSDKMethod</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethod class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethod-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/ShareSDKMethod.html">ShareSDKMethod</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethod-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/id.html">id</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/name.html">name</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-left-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>ShareSDKMethod constructor</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
|
||||||
|
<span class="name ">ShareSDKMethod</span>(<wbr>{<span class="parameter" id="-param-name"><span>@required</span> <span class="type-annotation">String</span> <span class="parameter-name">name</span>, </span> <span class="parameter" id="-param-id"><span>@required</span> <span class="type-annotation">int</span> <span class="parameter-name">id</span></span> })
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">ShareSDKMethod({@required this.name, @required this.id})
|
||||||
|
: assert(name != null && id != null),
|
||||||
|
super();</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,130 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the hashCode property from the ShareSDKMethod class, for the Dart programming language.">
|
||||||
|
<title>hashCode property - ShareSDKMethod class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></li>
|
||||||
|
<li class="self-crumb">hashCode property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">hashCode</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethod class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethod-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/ShareSDKMethod.html">ShareSDKMethod</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethod-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/id.html">id</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/name.html">name</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>hashCode property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">int</span>
|
||||||
|
<span class="name ">hashCode</span>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>The hash code for this object.</p>
|
||||||
|
<p>A hash code is a single integer which represents the state of the object
|
||||||
|
that affects <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> comparisons.</p>
|
||||||
|
<p>All objects have hash codes.
|
||||||
|
The default hash code represents only the identity of the object,
|
||||||
|
the same way as the default <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> implementation only considers objects
|
||||||
|
equal if they are identical (see <code>identityHashCode</code>).</p>
|
||||||
|
<p>If <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> is overridden to use the object state instead,
|
||||||
|
the hash code must also be changed to represent that state.</p>
|
||||||
|
<p>Hash codes must be the same for objects that are equal to each other
|
||||||
|
according to <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a>.
|
||||||
|
The hash code of an object should only change if the object changes
|
||||||
|
in a way that affects equality.
|
||||||
|
There are no further requirements for the hash codes.
|
||||||
|
They need not be consistent between executions of the same program
|
||||||
|
and there are no distribution guarantees.</p>
|
||||||
|
<p>Objects that are not equal are allowed to have the same hash code,
|
||||||
|
it is even technically allowed that all instances have the same hash code,
|
||||||
|
but if clashes happen too often, it may reduce the efficiency of hash-based
|
||||||
|
data structures like <code>HashSet</code> or <code>HashMap</code>.</p>
|
||||||
|
<p>If a subclass overrides <a href="sharesdk_register/ShareSDKRegister/hashCode.html">hashCode</a>, it should override the
|
||||||
|
<a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> operator as well to maintain consistency.</p>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external int get hashCode;</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,103 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the id property from the ShareSDKMethod class, for the Dart programming language.">
|
||||||
|
<title>id property - ShareSDKMethod class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></li>
|
||||||
|
<li class="self-crumb">id property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">id</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethod class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethod-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/ShareSDKMethod.html">ShareSDKMethod</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethod-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/id.html">id</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/name.html">name</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>id property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">int</span>
|
||||||
|
<span class="name ">id</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">final int id
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,103 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the name property from the ShareSDKMethod class, for the Dart programming language.">
|
||||||
|
<title>name property - ShareSDKMethod class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></li>
|
||||||
|
<li class="self-crumb">name property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">name</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethod class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethod-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/ShareSDKMethod.html">ShareSDKMethod</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethod-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/id.html">id</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/name.html">name</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>name property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">String</span>
|
||||||
|
<span class="name ">name</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">final String name
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the noSuchMethod method from the ShareSDKMethod class, for the Dart programming language.">
|
||||||
|
<title>noSuchMethod method - ShareSDKMethod class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></li>
|
||||||
|
<li class="self-crumb">noSuchMethod method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">noSuchMethod</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethod class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethod-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/ShareSDKMethod.html">ShareSDKMethod</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethod-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/id.html">id</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/name.html">name</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>noSuchMethod method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<div>
|
||||||
|
<ol class="annotation-list">
|
||||||
|
<li>@pragma("vm:entry-point")</li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<span class="returntype">dynamic</span>
|
||||||
|
<span class="name ">noSuchMethod</span>
|
||||||
|
(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation">Invocation</span> <span class="parameter-name">invocation</span></span>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>Invoked when a non-existent method or property is accessed.</p>
|
||||||
|
<p>Classes can override <a href="sharesdk_register/ShareSDKRegister/noSuchMethod.html">noSuchMethod</a> to provide custom behavior.</p>
|
||||||
|
<p>If a value is returned, it becomes the result of the original invocation.</p>
|
||||||
|
<p>The default behavior is to throw a <code>NoSuchMethodError</code>.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">@pragma("vm:entry-point")
|
||||||
|
external dynamic noSuchMethod(Invocation invocation);</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,122 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the operator == method from the ShareSDKMethod class, for the Dart programming language.">
|
||||||
|
<title>operator == method - ShareSDKMethod class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></li>
|
||||||
|
<li class="self-crumb">operator == method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">operator ==</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethod class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethod-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/ShareSDKMethod.html">ShareSDKMethod</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethod-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/id.html">id</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/name.html">name</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>operator == method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">bool</span>
|
||||||
|
<span class="name ">operator ==</span>
|
||||||
|
(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation">dynamic</span> <span class="parameter-name">other</span></span>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>The equality operator.</p>
|
||||||
|
<p>The default behavior for all <code>Object</code>s is to return true if and
|
||||||
|
only if <code>this</code> and <code>other</code> are the same object.</p>
|
||||||
|
<p>Override this method to specify a different equality relation on
|
||||||
|
a class. The overriding method must still be an equivalence relation.
|
||||||
|
That is, it must be:</p><ul><li>
|
||||||
|
<p>Total: It must return a boolean for all arguments. It should never throw
|
||||||
|
or return <code>null</code>.</p></li><li>
|
||||||
|
<p>Reflexive: For all objects <code>o</code>, <code>o == o</code> must be true.</p></li><li>
|
||||||
|
<p>Symmetric: For all objects <code>o1</code> and <code>o2</code>, <code>o1 == o2</code> and <code>o2 == o1</code> must
|
||||||
|
either both be true, or both be false.</p></li><li>
|
||||||
|
<p>Transitive: For all objects <code>o1</code>, <code>o2</code>, and <code>o3</code>, if <code>o1 == o2</code> and
|
||||||
|
<code>o2 == o3</code> are true, then <code>o1 == o3</code> must be true.</p></li></ul>
|
||||||
|
<p>The method should also be consistent over time,
|
||||||
|
so whether two objects are equal should only change
|
||||||
|
if at least one of the objects was modified.</p>
|
||||||
|
<p>If a subclass overrides the equality operator it should override
|
||||||
|
the <a href="sharesdk_register/ShareSDKRegister/hashCode.html">hashCode</a> method as well to maintain consistency.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external bool operator ==(other);</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,109 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the runtimeType property from the ShareSDKMethod class, for the Dart programming language.">
|
||||||
|
<title>runtimeType property - ShareSDKMethod class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></li>
|
||||||
|
<li class="self-crumb">runtimeType property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">runtimeType</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethod class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethod-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/ShareSDKMethod.html">ShareSDKMethod</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethod-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/id.html">id</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/name.html">name</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>runtimeType property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">Type</span>
|
||||||
|
<span class="name ">runtimeType</span>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>A representation of the runtime type of the object.</p>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external Type get runtimeType;</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,105 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the toString method from the ShareSDKMethod class, for the Dart programming language.">
|
||||||
|
<title>toString method - ShareSDKMethod class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></li>
|
||||||
|
<li class="self-crumb">toString method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">toString</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethod class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethod-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/ShareSDKMethod.html">ShareSDKMethod</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethod-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/id.html">id</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod/name.html">name</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethod-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethod/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>toString method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">String</span>
|
||||||
|
<span class="name ">toString</span>
|
||||||
|
(<wbr>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>Returns a string representation of this object.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external String toString();</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,293 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the ShareSDKMethods class from the sharesdk_defines library, for the Dart programming language.">
|
||||||
|
<title>ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li class="self-crumb">ShareSDKMethods class</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">ShareSDKMethods</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>sharesdk_defines library</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#classes">Classes</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform-class.html">ShareSDKPlatform</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatforms-class.html">ShareSDKPlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#enums">Enums</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#exceptions">Exceptions</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>ShareSDKMethods class</h1>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<section class="summary offset-anchor" id="constructors">
|
||||||
|
<h2>Constructors</h2>
|
||||||
|
|
||||||
|
<dl class="constructor-summary-list">
|
||||||
|
<dt id="ShareSDKMethods" class="callable">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></span><span class="signature">()</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor inherited" id="instance-properties">
|
||||||
|
<h2>Properties</h2>
|
||||||
|
|
||||||
|
<dl class="properties">
|
||||||
|
<dt id="hashCode" class="property inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></span>
|
||||||
|
<span class="signature">→ int</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
The hash code for this object. <a href="sharesdk_defines/ShareSDKMethods/hashCode.html">[...]</a>
|
||||||
|
<div class="features">read-only, inherited</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="runtimeType" class="property inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></span>
|
||||||
|
<span class="signature">→ Type</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
A representation of the runtime type of the object.
|
||||||
|
<div class="features">read-only, inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor inherited" id="instance-methods">
|
||||||
|
<h2>Methods</h2>
|
||||||
|
<dl class="callables">
|
||||||
|
<dt id="noSuchMethod" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation">Invocation</span> <span class="parameter-name">invocation</span></span>)
|
||||||
|
<span class="returntype parameter">→ dynamic</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
Invoked when a non-existent method or property is accessed. <a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">[...]</a>
|
||||||
|
<div class="features">@pragma("vm:entry-point"), inherited</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="toString" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></span><span class="signature">(<wbr>)
|
||||||
|
<span class="returntype parameter">→ String</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
Returns a string representation of this object.
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor inherited" id="operators">
|
||||||
|
<h2>Operators</h2>
|
||||||
|
<dl class="callables">
|
||||||
|
<dt id="operator ==" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation">dynamic</span> <span class="parameter-name">other</span></span>)
|
||||||
|
<span class="returntype parameter">→ bool</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
The equality operator. <a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">[...]</a>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor" id="static-properties">
|
||||||
|
<h2>Static Properties</h2>
|
||||||
|
|
||||||
|
<dl class="properties">
|
||||||
|
<dt id="activePlatforms" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="auth" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="cancelAuth" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="getUserInfo" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="getVersion" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="hasAuthed" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="openMiniProgram" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="regist" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="share" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="showEditor" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="showMenu" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></span>
|
||||||
|
<span class="signature">→ <a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,109 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the ShareSDKMethods constructor from the Class ShareSDKMethods class from the sharesdk_defines library, for the Dart programming language.">
|
||||||
|
<title>ShareSDKMethods constructor - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">ShareSDKMethods constructor</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">ShareSDKMethods</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-left-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>ShareSDKMethods constructor</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
|
||||||
|
<span class="name ">ShareSDKMethods</span>(<wbr>)
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the activePlatforms property from the ShareSDKMethods class, for the Dart programming language.">
|
||||||
|
<title>activePlatforms property - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">activePlatforms property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">activePlatforms</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>activePlatforms property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
<span class="name ">activePlatforms</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static final ShareSDKMethod activePlatforms =
|
||||||
|
ShareSDKMethod(name: "activePlatforms", id: 7)
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,113 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the auth property from the ShareSDKMethods class, for the Dart programming language.">
|
||||||
|
<title>auth property - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">auth property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">auth</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>auth property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
<span class="name ">auth</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static final ShareSDKMethod auth = ShareSDKMethod(name: "auth", id: 2)
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the cancelAuth property from the ShareSDKMethods class, for the Dart programming language.">
|
||||||
|
<title>cancelAuth property - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">cancelAuth property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">cancelAuth</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>cancelAuth property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
<span class="name ">cancelAuth</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static final ShareSDKMethod cancelAuth =
|
||||||
|
ShareSDKMethod(name: "cancelAuth", id: 4)
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the getUserInfo property from the ShareSDKMethods class, for the Dart programming language.">
|
||||||
|
<title>getUserInfo property - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">getUserInfo property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">getUserInfo</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>getUserInfo property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
<span class="name ">getUserInfo</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static final ShareSDKMethod getUserInfo =
|
||||||
|
ShareSDKMethod(name: "getUserInfo", id: 5)
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the getVersion property from the ShareSDKMethods class, for the Dart programming language.">
|
||||||
|
<title>getVersion property - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">getVersion property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">getVersion</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>getVersion property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
<span class="name ">getVersion</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static final ShareSDKMethod getVersion =
|
||||||
|
ShareSDKMethod(name: "getVersion", id: 0)
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the hasAuthed property from the ShareSDKMethods class, for the Dart programming language.">
|
||||||
|
<title>hasAuthed property - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">hasAuthed property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">hasAuthed</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>hasAuthed property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
<span class="name ">hasAuthed</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static final ShareSDKMethod hasAuthed =
|
||||||
|
ShareSDKMethod(name: "hasAuthed", id: 3)
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,140 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the hashCode property from the ShareSDKMethods class, for the Dart programming language.">
|
||||||
|
<title>hashCode property - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">hashCode property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">hashCode</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>hashCode property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">int</span>
|
||||||
|
<span class="name ">hashCode</span>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>The hash code for this object.</p>
|
||||||
|
<p>A hash code is a single integer which represents the state of the object
|
||||||
|
that affects <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> comparisons.</p>
|
||||||
|
<p>All objects have hash codes.
|
||||||
|
The default hash code represents only the identity of the object,
|
||||||
|
the same way as the default <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> implementation only considers objects
|
||||||
|
equal if they are identical (see <code>identityHashCode</code>).</p>
|
||||||
|
<p>If <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> is overridden to use the object state instead,
|
||||||
|
the hash code must also be changed to represent that state.</p>
|
||||||
|
<p>Hash codes must be the same for objects that are equal to each other
|
||||||
|
according to <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a>.
|
||||||
|
The hash code of an object should only change if the object changes
|
||||||
|
in a way that affects equality.
|
||||||
|
There are no further requirements for the hash codes.
|
||||||
|
They need not be consistent between executions of the same program
|
||||||
|
and there are no distribution guarantees.</p>
|
||||||
|
<p>Objects that are not equal are allowed to have the same hash code,
|
||||||
|
it is even technically allowed that all instances have the same hash code,
|
||||||
|
but if clashes happen too often, it may reduce the efficiency of hash-based
|
||||||
|
data structures like <code>HashSet</code> or <code>HashMap</code>.</p>
|
||||||
|
<p>If a subclass overrides <a href="sharesdk_register/ShareSDKRegister/hashCode.html">hashCode</a>, it should override the
|
||||||
|
<a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> operator as well to maintain consistency.</p>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external int get hashCode;</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,124 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the noSuchMethod method from the ShareSDKMethods class, for the Dart programming language.">
|
||||||
|
<title>noSuchMethod method - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">noSuchMethod method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">noSuchMethod</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>noSuchMethod method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<div>
|
||||||
|
<ol class="annotation-list">
|
||||||
|
<li>@pragma("vm:entry-point")</li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<span class="returntype">dynamic</span>
|
||||||
|
<span class="name ">noSuchMethod</span>
|
||||||
|
(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation">Invocation</span> <span class="parameter-name">invocation</span></span>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>Invoked when a non-existent method or property is accessed.</p>
|
||||||
|
<p>Classes can override <a href="sharesdk_register/ShareSDKRegister/noSuchMethod.html">noSuchMethod</a> to provide custom behavior.</p>
|
||||||
|
<p>If a value is returned, it becomes the result of the original invocation.</p>
|
||||||
|
<p>The default behavior is to throw a <code>NoSuchMethodError</code>.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">@pragma("vm:entry-point")
|
||||||
|
external dynamic noSuchMethod(Invocation invocation);</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the openMiniProgram property from the ShareSDKMethods class, for the Dart programming language.">
|
||||||
|
<title>openMiniProgram property - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">openMiniProgram property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">openMiniProgram</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>openMiniProgram property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
<span class="name ">openMiniProgram</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static final ShareSDKMethod openMiniProgram =
|
||||||
|
ShareSDKMethod(name: "openMiniProgram", id: 9)
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,132 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the operator == method from the ShareSDKMethods class, for the Dart programming language.">
|
||||||
|
<title>operator == method - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">operator == method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">operator ==</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>operator == method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">bool</span>
|
||||||
|
<span class="name ">operator ==</span>
|
||||||
|
(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation">dynamic</span> <span class="parameter-name">other</span></span>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>The equality operator.</p>
|
||||||
|
<p>The default behavior for all <code>Object</code>s is to return true if and
|
||||||
|
only if <code>this</code> and <code>other</code> are the same object.</p>
|
||||||
|
<p>Override this method to specify a different equality relation on
|
||||||
|
a class. The overriding method must still be an equivalence relation.
|
||||||
|
That is, it must be:</p><ul><li>
|
||||||
|
<p>Total: It must return a boolean for all arguments. It should never throw
|
||||||
|
or return <code>null</code>.</p></li><li>
|
||||||
|
<p>Reflexive: For all objects <code>o</code>, <code>o == o</code> must be true.</p></li><li>
|
||||||
|
<p>Symmetric: For all objects <code>o1</code> and <code>o2</code>, <code>o1 == o2</code> and <code>o2 == o1</code> must
|
||||||
|
either both be true, or both be false.</p></li><li>
|
||||||
|
<p>Transitive: For all objects <code>o1</code>, <code>o2</code>, and <code>o3</code>, if <code>o1 == o2</code> and
|
||||||
|
<code>o2 == o3</code> are true, then <code>o1 == o3</code> must be true.</p></li></ul>
|
||||||
|
<p>The method should also be consistent over time,
|
||||||
|
so whether two objects are equal should only change
|
||||||
|
if at least one of the objects was modified.</p>
|
||||||
|
<p>If a subclass overrides the equality operator it should override
|
||||||
|
the <a href="sharesdk_register/ShareSDKRegister/hashCode.html">hashCode</a> method as well to maintain consistency.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external bool operator ==(other);</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,113 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the regist property from the ShareSDKMethods class, for the Dart programming language.">
|
||||||
|
<title>regist property - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">regist property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">regist</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>regist property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
<span class="name ">regist</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static final ShareSDKMethod regist = ShareSDKMethod(name: "regist", id: 6)
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,119 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the runtimeType property from the ShareSDKMethods class, for the Dart programming language.">
|
||||||
|
<title>runtimeType property - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">runtimeType property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">runtimeType</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>runtimeType property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">Type</span>
|
||||||
|
<span class="name ">runtimeType</span>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>A representation of the runtime type of the object.</p>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external Type get runtimeType;</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,113 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the share property from the ShareSDKMethods class, for the Dart programming language.">
|
||||||
|
<title>share property - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">share property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">share</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>share property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
<span class="name ">share</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static final ShareSDKMethod share = ShareSDKMethod(name: "share", id: 1)
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the showEditor property from the ShareSDKMethods class, for the Dart programming language.">
|
||||||
|
<title>showEditor property - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">showEditor property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">showEditor</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>showEditor property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
<span class="name ">showEditor</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static final ShareSDKMethod showEditor =
|
||||||
|
ShareSDKMethod(name: "showEditor", id: 8)
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the showMenu property from the ShareSDKMethods class, for the Dart programming language.">
|
||||||
|
<title>showMenu property - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">showMenu property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">showMenu</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>showMenu property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype"><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></span>
|
||||||
|
<span class="name ">showMenu</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">static final ShareSDKMethod showMenu =
|
||||||
|
ShareSDKMethod(name: "showMenu", id: 7)
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,115 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the toString method from the ShareSDKMethods class, for the Dart programming language.">
|
||||||
|
<title>toString method - ShareSDKMethods class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li class="self-crumb">toString method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">toString</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKMethods class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/ShareSDKMethods.html">ShareSDKMethods</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited">
|
||||||
|
<a href="sharesdk_defines/ShareSDKMethods-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKMethods-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKMethods/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKMethods-class.html#static-properties">Static properties</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/activePlatforms.html">activePlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/auth.html">auth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/cancelAuth.html">cancelAuth</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getUserInfo.html">getUserInfo</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/getVersion.html">getVersion</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/hasAuthed.html">hasAuthed</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/openMiniProgram.html">openMiniProgram</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/regist.html">regist</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/share.html">share</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showEditor.html">showEditor</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods/showMenu.html">showMenu</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>toString method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">String</span>
|
||||||
|
<span class="name ">toString</span>
|
||||||
|
(<wbr>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>Returns a string representation of this object.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external String toString();</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,205 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the ShareSDKPlatform class from the sharesdk_defines library, for the Dart programming language.">
|
||||||
|
<title>ShareSDKPlatform class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li class="self-crumb">ShareSDKPlatform class</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">ShareSDKPlatform</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>sharesdk_defines library</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#classes">Classes</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethod-class.html">ShareSDKMethod</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKMethods-class.html">ShareSDKMethods</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform-class.html">ShareSDKPlatform</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatforms-class.html">ShareSDKPlatforms</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentType-class.html">SSDKContentType</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKContentTypes-class.html">SSDKContentTypes</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#enums">Enums</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKResponseState-class.html">SSDKResponseState</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/sharesdk_defines-library.html#exceptions">Exceptions</a></li>
|
||||||
|
<li><a href="sharesdk_defines/SSDKError-class.html">SSDKError</a></li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>ShareSDKPlatform class</h1>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<section class="summary offset-anchor" id="constructors">
|
||||||
|
<h2>Constructors</h2>
|
||||||
|
|
||||||
|
<dl class="constructor-summary-list">
|
||||||
|
<dt id="ShareSDKPlatform" class="callable">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKPlatform/ShareSDKPlatform.html">ShareSDKPlatform</a></span><span class="signature">({<span class="parameter" id="-param-id"><span>@required</span> <span class="type-annotation">int</span> <span class="parameter-name">id</span>, </span> <span class="parameter" id="-param-name"><span>@required</span> <span class="type-annotation">String</span> <span class="parameter-name">name</span></span> })</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor" id="instance-properties">
|
||||||
|
<h2>Properties</h2>
|
||||||
|
|
||||||
|
<dl class="properties">
|
||||||
|
<dt id="id" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKPlatform/id.html">id</a></span>
|
||||||
|
<span class="signature">→ int</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="name" class="property">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKPlatform/name.html">name</a></span>
|
||||||
|
<span class="signature">→ String</span>
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
|
||||||
|
<div class="features">final</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="hashCode" class="property inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKPlatform/hashCode.html">hashCode</a></span>
|
||||||
|
<span class="signature">→ int</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
The hash code for this object. <a href="sharesdk_defines/ShareSDKPlatform/hashCode.html">[...]</a>
|
||||||
|
<div class="features">read-only, inherited</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="runtimeType" class="property inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKPlatform/runtimeType.html">runtimeType</a></span>
|
||||||
|
<span class="signature">→ Type</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
A representation of the runtime type of the object.
|
||||||
|
<div class="features">read-only, inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor inherited" id="instance-methods">
|
||||||
|
<h2>Methods</h2>
|
||||||
|
<dl class="callables">
|
||||||
|
<dt id="noSuchMethod" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKPlatform/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation">Invocation</span> <span class="parameter-name">invocation</span></span>)
|
||||||
|
<span class="returntype parameter">→ dynamic</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
Invoked when a non-existent method or property is accessed. <a href="sharesdk_defines/ShareSDKPlatform/noSuchMethod.html">[...]</a>
|
||||||
|
<div class="features">@pragma("vm:entry-point"), inherited</div>
|
||||||
|
</dd>
|
||||||
|
<dt id="toString" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKPlatform/toString.html">toString</a></span><span class="signature">(<wbr>)
|
||||||
|
<span class="returntype parameter">→ String</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
Returns a string representation of this object.
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary offset-anchor inherited" id="operators">
|
||||||
|
<h2>Operators</h2>
|
||||||
|
<dl class="callables">
|
||||||
|
<dt id="operator ==" class="callable inherited">
|
||||||
|
<span class="name"><a href="sharesdk_defines/ShareSDKPlatform/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation">dynamic</span> <span class="parameter-name">other</span></span>)
|
||||||
|
<span class="returntype parameter">→ bool</span>
|
||||||
|
</span>
|
||||||
|
</dt>
|
||||||
|
<dd class="inherited">
|
||||||
|
The equality operator. <a href="sharesdk_defines/ShareSDKPlatform/operator_equals.html">[...]</a>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKPlatform-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/ShareSDKPlatform.html">ShareSDKPlatform</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/ShareSDKPlatform-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/id.html">id</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/name.html">name</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKPlatform-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKPlatform-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,104 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the ShareSDKPlatform constructor from the Class ShareSDKPlatform class from the sharesdk_defines library, for the Dart programming language.">
|
||||||
|
<title>ShareSDKPlatform constructor - ShareSDKPlatform class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform-class.html">ShareSDKPlatform</a></li>
|
||||||
|
<li class="self-crumb">ShareSDKPlatform constructor</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">ShareSDKPlatform</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKPlatform class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKPlatform-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/ShareSDKPlatform.html">ShareSDKPlatform</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/ShareSDKPlatform-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/id.html">id</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/name.html">name</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKPlatform-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKPlatform-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-left-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>ShareSDKPlatform constructor</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
|
||||||
|
<span class="name ">ShareSDKPlatform</span>(<wbr>{<span class="parameter" id="-param-id"><span>@required</span> <span class="type-annotation">int</span> <span class="parameter-name">id</span>, </span> <span class="parameter" id="-param-name"><span>@required</span> <span class="type-annotation">String</span> <span class="parameter-name">name</span></span> })
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">ShareSDKPlatform({@required this.id, @required this.name})
|
||||||
|
: assert(id != null && name != null),
|
||||||
|
super();</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,130 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the hashCode property from the ShareSDKPlatform class, for the Dart programming language.">
|
||||||
|
<title>hashCode property - ShareSDKPlatform class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform-class.html">ShareSDKPlatform</a></li>
|
||||||
|
<li class="self-crumb">hashCode property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">hashCode</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKPlatform class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKPlatform-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/ShareSDKPlatform.html">ShareSDKPlatform</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/ShareSDKPlatform-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/id.html">id</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/name.html">name</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKPlatform-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKPlatform-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>hashCode property</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<section id="getter">
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">int</span>
|
||||||
|
<span class="name ">hashCode</span>
|
||||||
|
<div class="features">inherited</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>The hash code for this object.</p>
|
||||||
|
<p>A hash code is a single integer which represents the state of the object
|
||||||
|
that affects <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> comparisons.</p>
|
||||||
|
<p>All objects have hash codes.
|
||||||
|
The default hash code represents only the identity of the object,
|
||||||
|
the same way as the default <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> implementation only considers objects
|
||||||
|
equal if they are identical (see <code>identityHashCode</code>).</p>
|
||||||
|
<p>If <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> is overridden to use the object state instead,
|
||||||
|
the hash code must also be changed to represent that state.</p>
|
||||||
|
<p>Hash codes must be the same for objects that are equal to each other
|
||||||
|
according to <a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a>.
|
||||||
|
The hash code of an object should only change if the object changes
|
||||||
|
in a way that affects equality.
|
||||||
|
There are no further requirements for the hash codes.
|
||||||
|
They need not be consistent between executions of the same program
|
||||||
|
and there are no distribution guarantees.</p>
|
||||||
|
<p>Objects that are not equal are allowed to have the same hash code,
|
||||||
|
it is even technically allowed that all instances have the same hash code,
|
||||||
|
but if clashes happen too often, it may reduce the efficiency of hash-based
|
||||||
|
data structures like <code>HashSet</code> or <code>HashMap</code>.</p>
|
||||||
|
<p>If a subclass overrides <a href="sharesdk_register/ShareSDKRegister/hashCode.html">hashCode</a>, it should override the
|
||||||
|
<a href="sharesdk_register/ShareSDKRegister/operator_equals.html">operator ==</a> operator as well to maintain consistency.</p>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external int get hashCode;</code></pre>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,103 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the id property from the ShareSDKPlatform class, for the Dart programming language.">
|
||||||
|
<title>id property - ShareSDKPlatform class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform-class.html">ShareSDKPlatform</a></li>
|
||||||
|
<li class="self-crumb">id property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">id</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKPlatform class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKPlatform-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/ShareSDKPlatform.html">ShareSDKPlatform</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/ShareSDKPlatform-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/id.html">id</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/name.html">name</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKPlatform-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKPlatform-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>id property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">int</span>
|
||||||
|
<span class="name ">id</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">final int id
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,103 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the name property from the ShareSDKPlatform class, for the Dart programming language.">
|
||||||
|
<title>name property - ShareSDKPlatform class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform-class.html">ShareSDKPlatform</a></li>
|
||||||
|
<li class="self-crumb">name property</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">name</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKPlatform class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKPlatform-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/ShareSDKPlatform.html">ShareSDKPlatform</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/ShareSDKPlatform-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/id.html">id</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/name.html">name</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKPlatform-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKPlatform-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>name property</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">String</span>
|
||||||
|
<span class="name ">name</span>
|
||||||
|
<div class="features">final</div>
|
||||||
|
</section>
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">final String name
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,114 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the noSuchMethod method from the ShareSDKPlatform class, for the Dart programming language.">
|
||||||
|
<title>noSuchMethod method - ShareSDKPlatform class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform-class.html">ShareSDKPlatform</a></li>
|
||||||
|
<li class="self-crumb">noSuchMethod method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">noSuchMethod</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKPlatform class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKPlatform-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/ShareSDKPlatform.html">ShareSDKPlatform</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/ShareSDKPlatform-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/id.html">id</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/name.html">name</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKPlatform-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKPlatform-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>noSuchMethod method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<div>
|
||||||
|
<ol class="annotation-list">
|
||||||
|
<li>@pragma("vm:entry-point")</li>
|
||||||
|
</ol>
|
||||||
|
</div>
|
||||||
|
<span class="returntype">dynamic</span>
|
||||||
|
<span class="name ">noSuchMethod</span>
|
||||||
|
(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation">Invocation</span> <span class="parameter-name">invocation</span></span>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>Invoked when a non-existent method or property is accessed.</p>
|
||||||
|
<p>Classes can override <a href="sharesdk_register/ShareSDKRegister/noSuchMethod.html">noSuchMethod</a> to provide custom behavior.</p>
|
||||||
|
<p>If a value is returned, it becomes the result of the original invocation.</p>
|
||||||
|
<p>The default behavior is to throw a <code>NoSuchMethodError</code>.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">@pragma("vm:entry-point")
|
||||||
|
external dynamic noSuchMethod(Invocation invocation);</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -0,0 +1,122 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="API docs for the operator == method from the ShareSDKPlatform class, for the Dart programming language.">
|
||||||
|
<title>operator == method - ShareSDKPlatform class - sharesdk_defines library - Dart API</title>
|
||||||
|
<!-- required because all the links are pseudo-absolute -->
|
||||||
|
<base href="../..">
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500,400i,400,300|Source+Sans+Pro:400,300,700" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="static-assets/github.css">
|
||||||
|
<link rel="stylesheet" href="static-assets/styles.css">
|
||||||
|
<link rel="icon" href="static-assets/favicon.png">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="overlay-under-drawer"></div>
|
||||||
|
|
||||||
|
<header id="title">
|
||||||
|
<button id="sidenav-left-toggle" type="button"> </button>
|
||||||
|
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
||||||
|
<li><a href="index.html">sharesdk</a></li>
|
||||||
|
<li><a href="sharesdk_defines/sharesdk_defines-library.html">sharesdk_defines</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform-class.html">ShareSDKPlatform</a></li>
|
||||||
|
<li class="self-crumb">operator == method</li>
|
||||||
|
</ol>
|
||||||
|
<div class="self-name">operator ==</div>
|
||||||
|
<form class="search navbar-right" role="search">
|
||||||
|
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
||||||
|
</form>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-3 col-md-2 sidebar sidebar-offcanvas-left">
|
||||||
|
<h5>ShareSDKPlatform class</h5>
|
||||||
|
<ol>
|
||||||
|
<li class="section-title"><a href="sharesdk_defines/ShareSDKPlatform-class.html#constructors">Constructors</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/ShareSDKPlatform.html">ShareSDKPlatform</a></li>
|
||||||
|
|
||||||
|
<li class="section-title">
|
||||||
|
<a href="sharesdk_defines/ShareSDKPlatform-class.html#instance-properties">Properties</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/id.html">id</a></li>
|
||||||
|
<li><a href="sharesdk_defines/ShareSDKPlatform/name.html">name</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/hashCode.html">hashCode</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/runtimeType.html">runtimeType</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKPlatform-class.html#instance-methods">Methods</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/noSuchMethod.html">noSuchMethod</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/toString.html">toString</a></li>
|
||||||
|
|
||||||
|
<li class="section-title inherited"><a href="sharesdk_defines/ShareSDKPlatform-class.html#operators">Operators</a></li>
|
||||||
|
<li class="inherited"><a href="sharesdk_defines/ShareSDKPlatform/operator_equals.html">operator ==</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
<div class="col-xs-12 col-sm-9 col-md-8 main-content">
|
||||||
|
<h1>operator == method</h1>
|
||||||
|
|
||||||
|
<section class="multi-line-signature">
|
||||||
|
<span class="returntype">bool</span>
|
||||||
|
<span class="name ">operator ==</span>
|
||||||
|
(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation">dynamic</span> <span class="parameter-name">other</span></span>)
|
||||||
|
</section>
|
||||||
|
<section class="desc markdown">
|
||||||
|
<p>The equality operator.</p>
|
||||||
|
<p>The default behavior for all <code>Object</code>s is to return true if and
|
||||||
|
only if <code>this</code> and <code>other</code> are the same object.</p>
|
||||||
|
<p>Override this method to specify a different equality relation on
|
||||||
|
a class. The overriding method must still be an equivalence relation.
|
||||||
|
That is, it must be:</p><ul><li>
|
||||||
|
<p>Total: It must return a boolean for all arguments. It should never throw
|
||||||
|
or return <code>null</code>.</p></li><li>
|
||||||
|
<p>Reflexive: For all objects <code>o</code>, <code>o == o</code> must be true.</p></li><li>
|
||||||
|
<p>Symmetric: For all objects <code>o1</code> and <code>o2</code>, <code>o1 == o2</code> and <code>o2 == o1</code> must
|
||||||
|
either both be true, or both be false.</p></li><li>
|
||||||
|
<p>Transitive: For all objects <code>o1</code>, <code>o2</code>, and <code>o3</code>, if <code>o1 == o2</code> and
|
||||||
|
<code>o2 == o3</code> are true, then <code>o1 == o3</code> must be true.</p></li></ul>
|
||||||
|
<p>The method should also be consistent over time,
|
||||||
|
so whether two objects are equal should only change
|
||||||
|
if at least one of the objects was modified.</p>
|
||||||
|
<p>If a subclass overrides the equality operator it should override
|
||||||
|
the <a href="sharesdk_register/ShareSDKRegister/hashCode.html">hashCode</a> method as well to maintain consistency.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="summary source-code" id="source">
|
||||||
|
<h2><span>Implementation</span> </h2>
|
||||||
|
<pre class="language-dart"><code class="language-dart">external bool operator ==(other);</code></pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div> <!-- /.main-content -->
|
||||||
|
|
||||||
|
<div class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
|
||||||
|
</div><!--/.sidebar-offcanvas-->
|
||||||
|
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span class="no-break">
|
||||||
|
sharesdk 0.0.1
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
|
<script src="static-assets/typeahead.bundle.min.js"></script>
|
||||||
|
<script src="static-assets/highlight.pack.js"></script>
|
||||||
|
<script src="static-assets/URI.js"></script>
|
||||||
|
<script src="static-assets/script.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue