15 lines
416 B
Dart
15 lines
416 B
Dart
import 'package:regroup/Common/api_urls.dart';
|
|
import 'package:regroup/Common/base_manager.dart';
|
|
import 'package:regroup/Common/controller/data/network/network_api.dart';
|
|
|
|
class CommunitypostMethod {
|
|
CommunitypostMethod();
|
|
|
|
Future<ResponseData<dynamic>> postLikepost(updata) async {
|
|
final response = await NetworkApiServices().postApi(
|
|
updata,
|
|
ApiUrls.postLike,
|
|
);
|
|
return response;
|
|
}
|
|
} |