decode static method
Implementation
static NativeContextLibrary decode(Object result) {
result as List<Object?>;
return NativeContextLibrary(
name: result[0] as String?,
version: result[1] as String?,
);
}
static NativeContextLibrary decode(Object result) {
result as List<Object?>;
return NativeContextLibrary(
name: result[0] as String?,
version: result[1] as String?,
);
}