ProtocolScheme constructor

ProtocolScheme({
  1. required String scheme,
  2. String? appName,
  3. String? appPath,
})

Implementation

ProtocolScheme({
  required this.scheme,
  this.appName,
  this.appPath,
});