profile method

Future<XRPCResponse<StrongRef>> profile({
  1. String? displayName,
  2. String? description,
  3. Blob? avatar,
  4. Blob? banner,
  5. Labels? labels,
})

Implementation

Future<core.XRPCResponse<atp.StrongRef>> profile({
  String? displayName,
  String? description,
  atp.Blob? avatar,
  atp.Blob? banner,
  atp.Labels? labels,
}) async =>
    // ignore: deprecated_member_use_from_same_package
    await updateProfile(
      displayName: displayName,
      description: description,
      avatar: avatar,
      banner: banner,
      labels: labels,
    );