forked from Henry-Hiles/nexus
13 lines
331 B
Dart
13 lines
331 B
Dart
import "package:freezed_annotation/freezed_annotation.dart";
|
|
import "package:matrix/matrix.dart";
|
|
part "full_room.freezed.dart";
|
|
|
|
@freezed
|
|
abstract class FullRoom with _$FullRoom {
|
|
const FullRoom._();
|
|
const factory FullRoom({
|
|
required Room roomData,
|
|
required String title,
|
|
required Uri? avatar,
|
|
}) = _FullRoom;
|
|
}
|