mapFromJson static method

Map<String, JWKSEd25519PrivateKey> mapFromJson(
  1. dynamic json
)

Implementation

static Map<String, JWKSEd25519PrivateKey> mapFromJson(dynamic json) {
  final map = <String, JWKSEd25519PrivateKey>{};
  if (json is Map && json.isNotEmpty) {
    json = json.cast<String, dynamic>(); // ignore: parameter_assignments
    for (final entry in json.entries) {
      final value = JWKSEd25519PrivateKey.fromJson(entry.value);
      if (value != null) {
        map[entry.key] = value;
      }
    }
  }
  return map;
}