getCoding method

  1. @override
Future<Coding?> getCoding(
  1. String codeId
)
override

Get a Coding

Each coding is uniquely identified by a coding id. The coding id is a UUID. This codingId is the preferred method to retrieve one specific coding.

Parameters:

Implementation

@override
Future<Coding?> getCoding(String codeId) async => (await api.baseCodeApi.getCode(codeId))?.toCoding();