revealValues method

void revealValues()

Implementation

void revealValues() async {
  try {
    await channel.reveal();
  } on PlatformException catch (e) {
    log(e.message!);
  }
}