IntegrationCredential constructor

IntegrationCredential({
  1. required String name,
  2. required String platform,
  3. Object? value,
})

Returns a new IntegrationCredential instance.

Implementation

IntegrationCredential({
  required this.name,
  required this.platform,
  this.value,
});