getErrors method

Map<String, String?> getErrors()

Implementation

Map<String, String?> getErrors() {
  return Map.fromEntries(
    _fields.entries.map(
      (e) => MapEntry(e.key, (e.value as JarFieldState).error),
    ),
  );
}