follow method
Implementation
Future<core.XRPCResponse<atp.StrongRef>> follow({
required String did,
DateTime? createdAt,
Map<String, dynamic> unspecced = core.emptyJson,
}) async =>
await _ctx.atproto.repo.createRecord(
collection: ns.appBskyGraphFollow,
record: {
'subject': did,
'createdAt': _ctx.toUtcIso8601String(createdAt),
...unspecced,
},
);