getConsumerById method

Future<SpinachUser?> getConsumerById(
  1. String id
)

Implementation

Future<SpinachUser?> getConsumerById(String id) async {
  return await _registrationService.getConsumerById(id);
}