Building constructor
Building({
- required String identifier,
- required String name,
- required String address,
- required Bounds bounds,
- required Bounds boundsRotated,
- required Coordinate center,
- required double width,
- required double height,
- required String pictureThumbUrl,
- required String pictureUrl,
- required double rotation,
- required String userIdentifier,
- required Map<
String, dynamic> customFields, - required String createdAt,
- required String updatedAt,
Implementation
Building({
required super.identifier,
required super.name,
required this.address,
required this.bounds,
required this.boundsRotated,
required this.center,
required this.width,
required this.height,
required this.pictureThumbUrl,
required this.pictureUrl,
required this.rotation,
required this.userIdentifier,
required this.customFields,
required this.createdAt,
required this.updatedAt,
});