LibraryRef constructor

LibraryRef({
  1. String? name,
  2. String? uri,
  3. required String id,
})

Implementation

LibraryRef({
  this.name,
  this.uri,
  required String id,
}) : super(
        id: id,
      );