You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fluffychat/lib/pangea/repo/exchange_repo.dart

35 lines
826 B
Dart

import 'package:flutter/material.dart';
class PExchangeRepo {
static fetchExchangeClassInfo(String exchangePangeaId) async {}
static saveExchangeRecord(
String requestFromClass,
String requestToClass,
String requestTeacher,
String requestToClassAuthor,
String exchangePangeaId,
) async {}
static exchangeRejectRequest(String roomId, String teacherName) async {}
static validateExchange({
required String requestFromClass,
required String requestToClass,
required BuildContext context,
}) async {}
static createExchangeRequest({
required String roomId,
required String teacherID,
required String toClass,
required BuildContext context,
}) async {}
static isExchange(
BuildContext context,
String accessToken,
String exchangeId,
) async {}
}