RemoteAssociation constructor

RemoteAssociation({
  1. required String hostAuthority,
  2. int? id,
})

Creates an Association to construct remote endpoint Uris.

Implementation

RemoteAssociation({
  required this.hostAuthority,
  final int? id,
}): id = Association.randomValue(minValue: minId, maxValue: maxId),
    super(AssociationType.remote);