threadgate method

Future<XRPCResponse<StrongRef>> threadgate({
  1. required AtUri postUri,
  2. List<ThreadRule>? allowRules,
  3. DateTime? createdAt,
  4. Map<String, dynamic> unspecced = core.emptyJson,
})

Implementation

Future<core.XRPCResponse<atp.StrongRef>> threadgate({
  required core.AtUri postUri,
  List<ThreadRule>? allowRules,
  DateTime? createdAt,
  Map<String, dynamic> unspecced = core.emptyJson,
}) async =>
    // ignore: deprecated_member_use_from_same_package
    await createThreadgate(
      postUri: postUri,
      allowRules: allowRules,
      createdAt: createdAt,
      unspecced: unspecced,
    );