setDeveloperShowingSplash static method

Future<void> setDeveloperShowingSplash(
  1. bool developerShowingSplash
)

Implementation

static Future<void> setDeveloperShowingSplash(
    bool developerShowingSplash) async {
  try {
    await keys.setDeveloperShowingSplash(developerShowingSplash);
  } catch (ex) {
    Future.error(ex);
  }
}