extract_custom method

Future<Online> extract_custom(
  1. String key,
  2. String customFunction, {
  3. List? args = null,
})

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,
  );
}