mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 14:08:40 +00:00
12 lines
381 B
Dart
12 lines
381 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
// This provider will update the UI on changes in the contact list
|
|
class SendNextMediaTo with ChangeNotifier, DiagnosticableTreeMixin {
|
|
int? _sendNextMediaToUserId;
|
|
|
|
int? get sendNextMediaToUserId => _sendNextMediaToUserId;
|
|
void updateSendNextMediaTo(int? userId) {
|
|
_sendNextMediaToUserId = userId;
|
|
notifyListeners();
|
|
}
|
|
}
|