inventiv_critic_flutter 0.0.2 copy "inventiv_critic_flutter: ^0.0.2" to clipboard
inventiv_critic_flutter: ^0.0.2 copied to clipboard

outdated

A flutter plugin for Critic integration.

critic_flutter #

This plugin allows Flutter apps to interact with the Inventiv Critic system for bug tracking and reporting. You will need to have a Critic account to properly utilize this. Please visit the Critic website for more information.

How to use #

Step 1: Initialize the Critic library using your api key:

String key = 'your api key';
Critic().initialize(key);

Step 2: Create a new Bug Report using the .create const:

BugReport report = BugReport.create(
    description: 'description text',
    stepsToReproduce: 'steps to reproduce text',
);

Step 3: Use the Critic() singleton to submit your BugReport (example using Futures):

Critic().submitReport(report).then(
    (BugReport successfulReport) {
      //success!
    }).catchError((Object error) {
      //failure
    });

Step 4: Review bugs submitted for your organization using Critic's web portal

2
likes
0
pub points
34%
popularity

Publisher

verified publishertwinsun.dev

A flutter plugin for Critic integration.

Homepage

License

unknown (LICENSE)

Dependencies

device_info, flutter, http, package_info

More

Packages that depend on inventiv_critic_flutter