getDeclaration method

String getDeclaration()

Implementation

String getDeclaration() {
  switch (this) {
    case Declaration.doNotShareData:
      return 'This plugin does not share any device, company, or user related '
          'data with or without consent to any party within or outside this device.';
    case Declaration.doShareData:
      return 'This plugin does share device, company, or user related '
          'data with consent a other apps or parties within or outside this device.';
  }
}