instance property

Freshpaint get instance

Implementation

static Freshpaint get instance {
  if (_instance == null) {
    throw Exception(
        "Freshpaint has not yet been initialized. Please call the "
            "'Freshpaint.init(envId: String)' method before "
            "attempting to access the Freshpaint instance."
    );
  }

  return _instance!;
}