get method

Implementation

Future<RecipientModel> get(int id) async {
  final response = await dio.get('/mail/$id');
  return RecipientModel.fromJson(response.data);
}