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