extract_custom method
Implementation
Future<Online> extract_custom(
String key,
String customFunction, {
List<dynamic>? args = null,
}) async {
var Online = await this;
return Online.extract_custom(
key,
customFunction,
args: args,
);
}