decode static method
Implementation
static ShareBody decode(Object result) {
result as List<Object?>;
return ShareBody(
mTitle: result[0] as String?,
mContent: result[1] as String?,
mThumbUrl: result[2] as String?,
mUrl: result[3] as String?,
shareType: result[4] as int?,
mLocalPath: result[5] as String?,
);
}