GetById method

Future<I> GetById(
  1. dynamic id
)

GetById Get A Item From Database With Id

Implementation

Future<I> GetById(dynamic id) async {
  return await query.GetById(id);
}