ElicitationPropertySchemaArray.fromMap constructor
Implementation
factory ElicitationPropertySchemaArray.fromMap(Map<Object?, Object?> value) {
final decoded = ElicitationPropertySchema.fromMap(value);
if (decoded is! ElicitationPropertySchemaArray) {
throw const AcpWireDecodeException(
'Expected ElicitationPropertySchemaArray.',
);
}
return decoded;
}