LongdoObject static method

Map<String, Object?> LongdoObject(
  1. String type, {
  2. List<Object>? args,
})

Implementation

static Map<String, Object?> LongdoObject(String type, {List<Object>? args}) => {
      "\$object": type,
      "\$id": ++id,
      "args": args ?? [],
    };