kopia lustrzana https://gitlab.com/mysocialportal/relatica
11 wiersze
232 B
Dart
11 wiersze
232 B
Dart
![]() |
class EngagementSummary {
|
||
|
final int favoritesCount;
|
||
|
final int rebloggedCount;
|
||
|
final int repliesCount;
|
||
|
|
||
|
const EngagementSummary(
|
||
|
{this.favoritesCount = 0,
|
||
|
this.rebloggedCount = 0,
|
||
|
this.repliesCount = 0});
|
||
|
}
|