satisfaction 1.0.1 copy "satisfaction: ^1.0.1" to clipboard
satisfaction: ^1.0.1 copied to clipboard

A collection of customer satisfaction scores and metrics used by businesses to measure and assess customer satisfaction.

example/example.dart

import 'package:satisfaction/satisfaction.dart';

void main() {
  /// Initialize the main object
  Satisfaction satisfaction = Satisfaction();

  /// Get NPS score for several ratings
  double npsScore = satisfaction.nps(ratings: [1, 7, 7, 8, 9, 10]).score;
  print('nps: $npsScore');

  /// Get a summary describing the ratings
  Map<String, dynamic> npsStats =
      satisfaction.nps(ratings: [1, 7, 7, 8, 9, 10]).stats;
  print('nps stats: $npsStats');

  /// Get CSAT score for several ratings
  double csatScore = satisfaction.csat(ratings: [1, 2, 3, 4, 5]).score;
  print('csat: $csatScore');

  /// Get a summary describing the ratings
  Map<String, dynamic> csatStats =
      satisfaction.csat(ratings: [1, 2, 3, 4, 5]).stats;
  print('csat stats: $csatStats');
}
5
likes
160
pub points
0%
popularity

Publisher

verified publisher0xdir.com

A collection of customer satisfaction scores and metrics used by businesses to measure and assess customer satisfaction.

Repository (GitHub)
View/report issues

Topics

#data #csat #nps #customer #metrics

Documentation

API reference

Funding

Consider supporting this project:

github.com

License

MIT (LICENSE)

More

Packages that depend on satisfaction