CarpApp constructor

CarpApp({
  1. required String name,
  2. required Uri uri,
})

Create a CarpApp which know how to access a CARP backend.

name and uri are required parameters in order to identify and know the CAWS endpoint URI.

Implementation

CarpApp({
  required this.name,
  required this.uri,
});