save method

Future<void> save()

Implementation

Future<void> save() async {
  await plugin.updateProfile(
    displayName: displayName,
    description: description,
    avatar: await map(avatar!),
    banner: await map(banner!),
  );
}